CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Attributes
PixelEndcapName Class Reference

#include <PixelEndcapName.h>

Inheritance diagram for PixelEndcapName:
PixelModuleName

Public Types

enum  HalfCylinder { mO = 1, mI = 2, pO =3, pI =4 }
 
- Public Types inherited from PixelModuleName
enum  ModuleType {
  v1x2, v1x5, v1x8, v2x3,
  v2x4, v2x5, v2x8
}
 

Public Member Functions

int bladeName () const
 blade id More...
 
int diskName () const
 disk id More...
 
PXFDetId getDetId ()
 return DetId More...
 
DetId getDetId (const TrackerTopology *tt)
 
HalfCylinder halfCylinder () const
 
virtual PixelModuleName::ModuleType moduleType () const
 module Type More...
 
virtual std::string name () const
 from base class More...
 
virtual bool operator== (const PixelModuleName &) const
 check equality of modules from datamemebers More...
 
int pannelName () const
 pannel id More...
 
 PixelEndcapName (const DetId &, bool phase=false)
 ctor from DetId More...
 
 PixelEndcapName (const DetId &, const TrackerTopology *tt, bool phase=false)
 
 PixelEndcapName (HalfCylinder part=mO, int disk=0, int blade=0, int pannel=0, int plaq=0, bool phase=false)
 ctor for defined name More...
 
 PixelEndcapName (std::string name, bool phase=false)
 ctor from name string More...
 
int plaquetteName () const
 plaquetteId (in pannel) More...
 
int ringName () const
 ring Id More...
 
virtual ~PixelEndcapName ()
 
- Public Member Functions inherited from PixelModuleName
virtual bool isBarrel () const
 true for barrel modules More...
 
 PixelModuleName (bool isBarrel)
 
virtual ~PixelModuleName ()
 

Private Attributes

bool phase1
 
int theBlade
 
int theDisk
 
int thePannel
 
HalfCylinder thePart
 
int thePlaquette
 

Additional Inherited Members

- Static Public Member Functions inherited from PixelModuleName
static bool isBarrel (uint32_t rawDetId)
 

Detailed Description

Endcap Module name (as in PixelDatabase) for endcaps

Definition at line 16 of file PixelEndcapName.h.

Member Enumeration Documentation

Enumerator
mO 
mI 
pO 
pI 

Definition at line 19 of file PixelEndcapName.h.

Constructor & Destructor Documentation

PixelEndcapName::PixelEndcapName ( const DetId id,
bool  phase = false 
)

ctor from DetId

Definition at line 97 of file PixelEndcapName.cc.

References PXFDetId::blade(), PXFDetId::disk(), mI, mO, PXFDetId::module(), SurfaceOrientation::outer, PXFDetId::panel(), phase1, pI, pO, relativeConstraints::ring, PXFDetId::side(), theBlade, theDisk, thePannel, thePart, and thePlaquette.

98  : PixelModuleName(false), thePart(mO), theDisk(0),
99  theBlade(0), thePannel(0), thePlaquette(0), phase1(phase) {
100 
101  PXFDetId cmssw_numbering(id);
102  int side = cmssw_numbering.side();
103  int tmpBlade = cmssw_numbering.blade();
104  theDisk = cmssw_numbering.disk();
105  thePannel = cmssw_numbering.panel();
106  bool outer = false; // outer means with respect to the LHC ring (x - axis)
107 
108  if(phase1) { // phase1
109 
110  int ring=0; // ring number , according to radius, 1-lower, 2- higher
111 
112  if (tmpBlade>=7 && tmpBlade<=17) { // ring 1, O
113  outer = true;
114  theBlade = tmpBlade-6; //7...17-->1...11
115  ring = 1; // lower radius
116 
117  } else if( tmpBlade<=6 ) { // ring 1, I
118  theBlade = 7-tmpBlade; //1...6-->6...1
119  ring=1;
120 
121  } else if( tmpBlade>=18 && tmpBlade<=22 ) { // ring 1, I
122  theBlade = 29-tmpBlade; //18...22-->11...7
123  ring=1;
124 
125  } else if (tmpBlade>=32 && tmpBlade<=48) { // ring 2, O
126  outer = true;
127  theBlade = tmpBlade-31; //32...48-->28...12
128  ring=2; // higher radius
129 
130  } else if( tmpBlade>=23 && tmpBlade<=31 ) { // ring 2, I
131  theBlade = 32-tmpBlade; //23...31-->9...1
132  ring=2;
133 
134  } else if( tmpBlade>=49 && tmpBlade<=56 ) { // ring 2, I
135  theBlade = 66-tmpBlade; //49...56-->28...21
136  ring=2;
137 
138  } // end
139 
140  thePlaquette = ring;
141 
142  } else { // phase 0
143 
144  // hack for the pilot blade
145  if(pilot_blade && theDisk==3 ) { // do only for disk 3
146  if(tmpBlade>=1 && tmpBlade<=4) {
147  // convert the sequential counting of pilot blades to std. cmssw convention
148  if(tmpBlade<3) tmpBlade +=3;
149  else tmpBlade +=13;
150  } else {
151  edm::LogError ("Bad PilotBlade blade number ")
152  << tmpBlade;
153  }
154  }
155 
156  if (tmpBlade >= 7 && tmpBlade <= 18) {
157  outer = true; // outer means with respect to the LHC ring (x - axis)
158  theBlade = tmpBlade-6;
159  } else if( tmpBlade <=6 ) {
160  theBlade = 7-tmpBlade;
161  } else if( tmpBlade >= 19) {
162  theBlade = 31-tmpBlade;
163  }
164 
165  thePlaquette = cmssw_numbering.module();
166 
167  } // end phase1
168 
169  if( side == 1 && outer ) thePart = mO;
170  else if( side == 1 && !outer ) thePart = mI;
171  else if( side == 2 && outer ) thePart = pO;
172  else if( side == 2 && !outer ) thePart = pI;
173 
174 }
PixelModuleName(bool isBarrel)
HalfCylinder thePart
PixelEndcapName::PixelEndcapName ( const DetId id,
const TrackerTopology tt,
bool  phase = false 
)

Definition at line 14 of file PixelEndcapName.cc.

References mI, mO, SurfaceOrientation::outer, phase1, pI, pO, TrackerTopology::pxfBlade(), TrackerTopology::pxfDisk(), TrackerTopology::pxfModule(), TrackerTopology::pxfPanel(), TrackerTopology::pxfSide(), relativeConstraints::ring, theBlade, theDisk, thePannel, thePart, and thePlaquette.

15  : PixelModuleName(false), thePart(mO), theDisk(0),
16  theBlade(0), thePannel(0), thePlaquette(0), phase1(phase) {
17 
18 
19  //PXFDetId cmssw_numbering(id);
20  int side = tt->pxfSide(id);
21  int tmpBlade = tt->pxfBlade(id);
22  theDisk = tt->pxfDisk(id);
23  thePannel = tt->pxfPanel(id);
24  bool outer = false; // outer means with respect to the LHC ring (x - axis) Bm(p)I/O
25 
26  if(phase1) { // phase 1
27 
28  int ring=0; // ring number , according to radius, 1-lower, 2- higher
29 
30  if (tmpBlade>=7 && tmpBlade<=17) { // ring 1, O
31  outer = true;
32  theBlade = tmpBlade-6; //7...17-->1...11
33  ring = 1; // lower radius
34 
35  } else if( tmpBlade<=6 ) { // ring 1, I
36  theBlade = 7-tmpBlade; //1...6-->6...1
37  ring=1;
38 
39  } else if( tmpBlade>=18 && tmpBlade<=22 ) { // ring 1, I
40  theBlade = 29-tmpBlade; //18...22-->11...7
41  ring=1;
42 
43  } else if (tmpBlade>=32 && tmpBlade<=48) { // ring 2, O
44  outer = true;
45  theBlade = tmpBlade-31; //32...48-->28...12
46  ring=2; // higher radius
47 
48  } else if( tmpBlade>=23 && tmpBlade<=31 ) { // ring 2, I
49  theBlade = 32-tmpBlade; //23...31-->9...1
50  ring=2;
51 
52  } else if( tmpBlade>=49 && tmpBlade<=56 ) { // ring 2, I
53  theBlade = 66-tmpBlade; //49...56-->28...21
54  ring=2;
55 
56  } // end
57 
59 
60 
61  } else { // phase0
62 
63  // hack for the pilot blade
64  if(pilot_blade && theDisk==3 ) { // do only for disk 3
65  //cout<<tmpBlade<<" "<<theDisk<<endl;
66  if(tmpBlade>=1 && tmpBlade<=4) {
67  // convert the sequential counting of pilot blades to std. cmssw convention
68  if(tmpBlade<3) tmpBlade +=3;
69  else tmpBlade +=13;
70  } else {
71  edm::LogError ("Bad PilotBlade blade number ")
72  << tmpBlade;
73  }
74  }
75 
76  if (tmpBlade >= 7 && tmpBlade <= 18) {
77  outer = true;
78  theBlade = tmpBlade-6;
79  } else if( tmpBlade <=6 ) {
80  theBlade = 7-tmpBlade;
81  } else if( tmpBlade >= 19) {
82  theBlade = 31-tmpBlade;
83  }
84 
85  thePlaquette = tt->pxfModule(id); // ring number is coded as plaqutte (plaqs are unused)
86 
87  } // end phase1
88 
89  if( side == 1 && outer ) thePart = mO;
90  else if( side == 1 && !outer ) thePart = mI;
91  else if( side == 2 && outer ) thePart = pO;
92  else if( side == 2 && !outer ) thePart = pI;
93 
94 }
unsigned int pxfDisk(const DetId &id) const
PixelModuleName(bool isBarrel)
HalfCylinder thePart
unsigned int pxfModule(const DetId &id) const
unsigned int pxfSide(const DetId &id) const
unsigned int pxfPanel(const DetId &id) const
unsigned int pxfBlade(const DetId &id) const
PixelEndcapName::PixelEndcapName ( HalfCylinder  part = mO,
int  disk = 0,
int  blade = 0,
int  pannel = 0,
int  plaq = 0,
bool  phase = false 
)
inline

ctor for defined name

Definition at line 26 of file PixelEndcapName.h.

28  : PixelModuleName(false),
29  thePart(part), theDisk(disk), theBlade(blade), thePannel(pannel),
30  thePlaquette(plaq), phase1(phase)
31  { }
PixelModuleName(bool isBarrel)
HalfCylinder thePart
part
Definition: HCALResponse.h:20
PixelEndcapName::PixelEndcapName ( std::string  name,
bool  phase = false 
)

ctor from name string

Definition at line 177 of file PixelEndcapName.cc.

References mI, mO, name(), phase1, pI, pO, theBlade, theDisk, thePannel, thePart, and thePlaquette.

178  : PixelModuleName(false), thePart(mO), theDisk(0),
179  theBlade(0), thePannel(0), thePlaquette(0), phase1(phase) {
180 
181  // parse the name string
182  // first, check to make sure this is an FPix name, should start with "FPix_"
183  // also check to make sure the needed parts are present
184  if ( (name.substr(0, 5) != "FPix_") ||
185  (name.find("_B") == string::npos) ||
186  (name.find("_D") == string::npos) ||
187  (name.find("_BLD") == string::npos) ||
188  (name.find("_PNL") == string::npos) ||
189  ( (phase1 && name.find("_RNG") == string::npos) ) ||
190  ( (!phase1 && name.find("_PLQ") == string::npos) ) ) {
191  edm::LogError ("BadNameString|SiPixel")
192  << "Bad name string in PixelEndcapName::PixelEndcapName(std::string): "
193  << name;
194  return;
195  }
196 
197  // strip off ROC part if it's there
198  if (name.find("_ROC") != string::npos)
199  name = name.substr(0, name.find("_ROC"));
200 
201  // get the half cylinder
202  string hcString = name.substr(name.find("_B")+2, name.find("_D")-name.find("_B")-2);
203  if (hcString == "mO") thePart = mO;
204  else if (hcString == "mI") thePart = mI;
205  else if (hcString == "pO") thePart = pO;
206  else if (hcString == "pI") thePart = pI;
207  else {
208  edm::LogError ("BadNameString|SiPixel")
209  << "Unable to determine half cylinder in PixelEndcapName::PixelEndcapName(std::string): "
210  << name;
211  }
212 
213  // get the disk
214  string diskString = name.substr(name.find("_D")+2, name.find("_BLD")-name.find("_D")-2);
215  if (diskString == "1") theDisk = 1;
216  else if (diskString == "2") theDisk = 2;
217  else if (diskString == "3") theDisk = 3;
218  else {
219  edm::LogError ("BadNameString|SiPixel")
220  << "Unable to determine disk number in PixelEndcapName::PixelEndcapName(std::string): "
221  << name;
222  }
223 
224  // get the blade
225  string bladeString = name.substr(name.find("_BLD")+4, name.find("_PNL")-name.find("_BLD")-4);
226  // since atoi() doesn't report errors, do it the long way
227  if (bladeString == "1") theBlade = 1;
228  else if (bladeString == "2") theBlade = 2;
229  else if (bladeString == "3") theBlade = 3;
230  else if (bladeString == "4") theBlade = 4;
231  else if (bladeString == "5") theBlade = 5;
232  else if (bladeString == "6") theBlade = 6;
233  else if (bladeString == "7") theBlade = 7;
234  else if (bladeString == "8") theBlade = 8;
235  else if (bladeString == "9") theBlade = 9;
236  else if (bladeString == "10") theBlade = 10;
237  else if (bladeString == "11") theBlade = 11;
238  else if (bladeString == "12") theBlade = 12;
239  else if (bladeString == "13") theBlade = 13;
240  else if (bladeString == "14") theBlade = 14;
241  else if (bladeString == "15") theBlade = 15;
242  else if (bladeString == "16") theBlade = 16;
243  else if (bladeString == "17") theBlade = 17;
244  else {
245  edm::LogError ("BadNameString|SiPixel")
246  << "Unable to determine blade number in PixelEndcapName::PixelEndcapName(std::string): "
247  << name;
248  }
249 
250  // find the panel
251  string panelString;
252  if(phase1) panelString = name.substr(name.find("_PNL")+4, name.find("_RNG")-name.find("_PNL")-4);
253  else panelString = name.substr(name.find("_PNL")+4, name.find("_PLQ")-name.find("_PNL")-4);
254 
255  if (panelString == "1") thePannel = 1;
256  else if (panelString == "2") thePannel = 2;
257  else {
258  edm::LogError ("BadNameString|SiPixel")
259  << "Unable to determine panel number in PixelEndcapName::PixelEndcapName(std::string): "
260  << name;
261  }
262 
263  // find the plaquette, for phase 1 this is the rung number
264  if(phase1) { // phase1
265 
266  string ringString = name.substr(name.find("_RNG")+4, name.size()-name.find("_RNG")-4);
267  if (ringString == "1") thePlaquette = 1; // code ring in the plaquette
268  else if (ringString == "2") thePlaquette = 2;
269  else {
270  edm::LogError ("BadNameString|SiPixel")
271  << "Unable to determine ring number in PixelEndcapName::PixelEndcapName(std::string): "
272  << name;
273  }
274 
275  } else { // phase 0
276 
277  // find the plaquette
278  string plaquetteString = name.substr(name.find("_PLQ")+4, name.size()-name.find("_PLQ")-4);
279  if (plaquetteString == "1") thePlaquette = 1;
280  else if (plaquetteString == "2") thePlaquette = 2;
281  else if (plaquetteString == "3") thePlaquette = 3;
282  else if (plaquetteString == "4") thePlaquette = 4;
283  else {
284  edm::LogError ("BadNameString|SiPixel")
285  << "Unable to determine plaquette number in PixelEndcapName::PixelEndcapName(std::string): "
286  << name;
287  }
288 
289  } // end phase1
290 
291 
292 } // PixelEndcapName::PixelEndcapName(std::string name)
PixelModuleName(bool isBarrel)
HalfCylinder thePart
virtual std::string name() const
from base class
virtual PixelEndcapName::~PixelEndcapName ( )
inlinevirtual

Definition at line 36 of file PixelEndcapName.h.

36 { }

Member Function Documentation

int PixelEndcapName::bladeName ( ) const
inline
int PixelEndcapName::diskName ( ) const
inline
PXFDetId PixelEndcapName::getDetId ( void  )

return DetId

Definition at line 435 of file PixelEndcapName.cc.

References bladeName(), diskName(), halfCylinder(), AnalysisDataFormats_SUSYBSMObjects::hc, mI, mO, SurfaceOrientation::outer, pannelName(), phase1, pI, plaquetteName(), pO, relativeConstraints::ring, ringName(), and theDisk.

435  {
436 
437  uint32_t side = 0;
438  uint32_t disk = 0;
439  uint32_t blade = 0;
440  uint32_t panel = 0;
441  uint32_t module = 0;
442 
443  // figure out the side
445  if (hc == mO || hc == mI) side = 1;
446  else if (hc == pO || hc == pI) side = 2;
447 
448  // get disk/blade/panel/module numbers from PixelEndcapName object
449  disk = static_cast<uint32_t>(diskName());
450  uint32_t tmpBlade = static_cast<uint32_t>(bladeName());
451  panel = static_cast<uint32_t>(pannelName());
452 
453  // convert blade numbering to cmssw convention
454  bool outer = false;
455  outer = (hc == mO) || (hc == pO);
456 
457  if(phase1) { // phase1
458 
459  module = 1; // for phase 1 always 1,
460  int ring = static_cast<uint32_t>(ringName()); // this is ring for phase1
461  if(ring==1) { // ring 1, lower radius
462  if (outer) {
463  if (tmpBlade>=1 && tmpBlade<=11) blade = tmpBlade+6;
464  } else { //inner
465  if (tmpBlade<=6 ) blade = 7-tmpBlade;
466  else blade = 29-tmpBlade;
467  }
468 
469  } else if (ring==2) { //ring 2, upper radius
470  if (outer) {
471  if (tmpBlade>=1 && tmpBlade<=17) blade = tmpBlade+31;
472  } else { //inner
473  if (tmpBlade<=9 ) blade = 32-tmpBlade;
474  else blade = 66-tmpBlade;
475  }
476  }
477 
478  } else { // phase 0
479 
480  if (outer) {
481  blade = tmpBlade + 6;
482  } else { // inner
483  if (tmpBlade <= 6) blade = 7 - tmpBlade;
484  else if (tmpBlade <= 12) blade = 31 - tmpBlade;
485  }
486 
487  // hack for the pilot blade
488  if(pilot_blade && theDisk==3 ) { // do only for disk 3
489  //cout<<tmpBlade<<" "<<blade<<endl;
490  if(blade<=5) blade -=3;
491  else blade -=13;
492  //cout<<tmpBlade<<" "<<blade<<endl;
493  }
494 
495  module = static_cast<uint32_t>(plaquetteName());
496  } // end phase1
497 
498  // create and return the DetId
499  return PXFDetId(side, disk, blade, panel, module);
500 
501 } // PXFDetId PixelEndcapName::getDetId()
int plaquetteName() const
plaquetteId (in pannel)
int bladeName() const
blade id
int pannelName() const
pannel id
susybsm::HSCParticleCollection hc
Definition: classes.h:25
int diskName() const
disk id
int ringName() const
ring Id
HalfCylinder halfCylinder() const
Definition: vlib.h:208
DetId PixelEndcapName::getDetId ( const TrackerTopology tt)

Definition at line 362 of file PixelEndcapName.cc.

References bladeName(), diskName(), halfCylinder(), AnalysisDataFormats_SUSYBSMObjects::hc, mI, mO, SurfaceOrientation::outer, pannelName(), phase1, pI, plaquetteName(), pO, TrackerTopology::pxfDetId(), relativeConstraints::ring, ringName(), and theDisk.

362  {
363 
364  uint32_t side = 0;
365  uint32_t disk = 0;
366  uint32_t blade = 0;
367  uint32_t panel = 0;
368  uint32_t module = 0;
369 
370  // figure out the side
372  if (hc == mO || hc == mI) side = 1;
373  else if (hc == pO || hc == pI) side = 2;
374 
375  // get disk/blade/panel/module numbers from PixelEndcapName object
376  disk = static_cast<uint32_t>(diskName());
377  uint32_t tmpBlade = static_cast<uint32_t>(bladeName());
378  panel = static_cast<uint32_t>(pannelName());
379 
380  // convert blade numbering to cmssw convention
381  bool outer = false;
382  outer = (hc == mO) || (hc == pO);
383 
384  if(phase1) { // phase1
385 
386  module=1;
387  int ring = static_cast<uint32_t>(ringName()); // this is ring for phase1
388  if(ring==1) { // ring 1, lower radius
389  if (outer) {
390  if (tmpBlade>=1 && tmpBlade<=11) blade = tmpBlade+6;
391  } else { //inner
392  if (tmpBlade<=6 ) blade = 7-tmpBlade;
393  else blade = 29-tmpBlade;
394  }
395 
396  } else if (ring==2) { //ring 2, upper radius
397  if (outer) {
398  if (tmpBlade>=1 && tmpBlade<=17) blade = tmpBlade+31;
399  } else { //inner
400  if (tmpBlade<=9 ) blade = 32-tmpBlade;
401  else blade = 66-tmpBlade;
402  }
403  }
404 
405  } else { // phase 0
406 
407  if (outer) {
408  blade = tmpBlade + 6;
409  } else { // inner
410  if (tmpBlade <= 6) blade = 7 - tmpBlade;
411  else if (tmpBlade <= 12) blade = 31 - tmpBlade;
412  }
413 
414  // hack for the pilot blade
415  if(pilot_blade && theDisk==3 ) { // do only for disk 3
416  //cout<<tmpBlade<<" "<<blade<<endl;
417  if(blade<=5) blade -=3;
418  else blade -=13;
419  //cout<<tmpBlade<<" "<<blade<<endl;
420  }
421 
422  module = static_cast<uint32_t>(plaquetteName());
423  } // end phase1
424 
425 
426  // create and return the DetId
427  DetId id = tt->pxfDetId(side, disk, blade, panel, module);
428 
429  return id;
430 
431 } // PXFDetId PixelEndcapName::getDetId()
int plaquetteName() const
plaquetteId (in pannel)
DetId pxfDetId(uint32_t side, uint32_t disk, uint32_t blade, uint32_t panel, uint32_t module) const
int bladeName() const
blade id
Definition: DetId.h:18
int pannelName() const
pannel id
susybsm::HSCParticleCollection hc
Definition: classes.h:25
int diskName() const
disk id
int ringName() const
ring Id
HalfCylinder halfCylinder() const
Definition: vlib.h:208
HalfCylinder PixelEndcapName::halfCylinder ( ) const
inline
PixelModuleName::ModuleType PixelEndcapName::moduleType ( ) const
virtual

module Type

Implements PixelModuleName.

Definition at line 294 of file PixelEndcapName.cc.

References pannelName(), phase1, plaquetteName(), theDisk, PixelModuleName::v1x2, PixelModuleName::v1x5, PixelModuleName::v2x3, PixelModuleName::v2x4, PixelModuleName::v2x5, and PixelModuleName::v2x8.

Referenced by PixelEndcapLinkMaker::links().

295 {
296  ModuleType type = v1x2;
297 
298  if(phase1) { // phase1
299 
300  type = v2x8;
301 
302  } else { // phase 0
303 
304  if (pannelName() == 1) {
305  if (plaquetteName() == 1) { type = v1x2; }
306  else if (plaquetteName() == 2) { type = v2x3; }
307  else if (plaquetteName() == 3) { type = v2x4; }
308  else if (plaquetteName() == 4) { type = v1x5; }
309  } else {
310  if (plaquetteName() == 1) { type = v2x3; }
311  else if (plaquetteName() == 2) { type = v2x4; }
312  else if (plaquetteName() == 3) { type = v2x5; }
313  }
314 
315  // hack for the pilot blade
316  if(pilot_blade && theDisk==3 ) {type=v2x8;} // do only for disk 3
317 
318  } // end phase1
319 
320  return type;
321 }
int plaquetteName() const
plaquetteId (in pannel)
type
Definition: HCALResponse.h:21
int pannelName() const
pannel id
string PixelEndcapName::name ( ) const
virtual
bool PixelEndcapName::operator== ( const PixelModuleName o) const
virtual

check equality of modules from datamemebers

Implements PixelModuleName.

Definition at line 323 of file PixelEndcapName.cc.

References PixelModuleName::isBarrel(), python.connectstrParser::o, theBlade, theDisk, thePannel, thePart, and thePlaquette.

324 {
325  if (!o.isBarrel()) {
326  const PixelEndcapName * other = dynamic_cast<const PixelEndcapName *>(&o);
327  return ( other
328  && thePart == other->thePart
329  && theDisk == other->theDisk
330  && theBlade == other->theBlade
331  && thePannel == other->thePannel
332  && thePlaquette == other->thePlaquette );
333  } else return false;
334 }
HalfCylinder thePart
virtual bool isBarrel() const
true for barrel modules
int PixelEndcapName::pannelName ( ) const
inline
int PixelEndcapName::plaquetteName ( ) const
inline
int PixelEndcapName::ringName ( ) const
inline

ring Id

Definition at line 56 of file PixelEndcapName.h.

References thePlaquette.

Referenced by getDetId().

56 { return thePlaquette; }

Member Data Documentation

bool PixelEndcapName::phase1
private

Definition at line 72 of file PixelEndcapName.h.

Referenced by getDetId(), moduleType(), name(), and PixelEndcapName().

int PixelEndcapName::theBlade
private

Definition at line 71 of file PixelEndcapName.h.

Referenced by bladeName(), name(), operator==(), and PixelEndcapName().

int PixelEndcapName::theDisk
private

Definition at line 71 of file PixelEndcapName.h.

Referenced by diskName(), getDetId(), moduleType(), name(), operator==(), and PixelEndcapName().

int PixelEndcapName::thePannel
private

Definition at line 71 of file PixelEndcapName.h.

Referenced by name(), operator==(), pannelName(), and PixelEndcapName().

HalfCylinder PixelEndcapName::thePart
private

Definition at line 70 of file PixelEndcapName.h.

Referenced by halfCylinder(), name(), operator==(), and PixelEndcapName().

int PixelEndcapName::thePlaquette
private

Definition at line 71 of file PixelEndcapName.h.

Referenced by name(), operator==(), PixelEndcapName(), plaquetteName(), and ringName().