CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
AlignmentPI::topolInfo Struct Reference

#include <AlignmentPayloadInspectorHelper.h>

Public Member Functions

void fillGeometryInfo (const DetId &detId, const TrackerTopology &tTopo, bool isPhase0)
 
AlignmentPI::regions filterThePartition ()
 
void init ()
 
void printAll ()
 
bool sanityCheck ()
 
virtual ~topolInfo ()
 

Private Attributes

bool m_isDoubleSide
 
bool m_isInternal
 
bool m_isRphi
 
int m_layer
 
uint32_t m_rawid
 
int m_ring
 
int m_side
 
int m_subdetid
 

Detailed Description

Definition at line 353 of file AlignmentPayloadInspectorHelper.h.

Constructor & Destructor Documentation

◆ ~topolInfo()

virtual AlignmentPI::topolInfo::~topolInfo ( )
inlinevirtual

Definition at line 370 of file AlignmentPayloadInspectorHelper.h.

370 {}

Member Function Documentation

◆ fillGeometryInfo()

void AlignmentPI::topolInfo::fillGeometryInfo ( const DetId detId,
const TrackerTopology tTopo,
bool  isPhase0 
)
inline

Definition at line 407 of file AlignmentPayloadInspectorHelper.h.

References AlignmentPI::isBPixOuterLadder(), TrackerTopology::isRPhi(), m_isDoubleSide, m_isInternal, m_isRphi, m_layer, m_rawid, m_ring, m_side, m_subdetid, PixelSubdetector::PixelBarrel, PixelSubdetector::PixelEndcap, TrackerTopology::pxbLayer(), TrackerTopology::pxfDisk(), TrackerTopology::pxfSide(), DetId::rawId(), DetId::subdetId(), StripSubdetector::TEC, TrackerTopology::tecIsDoubleSide(), TrackerTopology::tecPetalInfo(), TrackerTopology::tecRing(), TrackerTopology::tecSide(), TrackerTopology::tecWheel(), StripSubdetector::TIB, TrackerTopology::tibIsDoubleSide(), TrackerTopology::tibIsInternalString(), TrackerTopology::tibLayer(), TrackerTopology::tibSide(), StripSubdetector::TID, TrackerTopology::tidIsDoubleSide(), TrackerTopology::tidModuleInfo(), TrackerTopology::tidRing(), TrackerTopology::tidSide(), TrackerTopology::tidWheel(), StripSubdetector::TOB, TrackerTopology::tobIsDoubleSide(), TrackerTopology::tobLayer(), TrackerTopology::tobModule(), and TrackerTopology::tobSide().

409  {
410  unsigned int subdetId = static_cast<unsigned int>(detId.subdetId());
411 
412  m_rawid = detId.rawId();
413  m_subdetid = subdetId;
414 
415  if (subdetId == StripSubdetector::TIB) {
416  m_layer = tTopo.tibLayer(detId.rawId());
417  m_side = tTopo.tibSide(detId.rawId());
418  m_isRphi = tTopo.isRPhi(detId.rawId());
419  m_isDoubleSide = tTopo.tibIsDoubleSide(detId.rawId());
420  m_isInternal = tTopo.tibIsInternalString(detId.rawId());
421  } else if (subdetId == StripSubdetector::TOB) {
422  m_layer = tTopo.tobLayer(detId.rawId());
423  m_side = tTopo.tobSide(detId.rawId());
424  m_isRphi = tTopo.isRPhi(detId.rawId());
425  m_isDoubleSide = tTopo.tobIsDoubleSide(detId.rawId());
426  m_isInternal = tTopo.tobModule(detId.rawId()) % 2;
427  } else if (subdetId == StripSubdetector::TID) {
428  m_layer = tTopo.tidWheel(detId.rawId());
429  m_side = tTopo.tidSide(detId.rawId());
430  m_isRphi = tTopo.isRPhi(detId.rawId());
431  m_ring = tTopo.tidRing(detId.rawId());
432  m_isDoubleSide = tTopo.tidIsDoubleSide(detId.rawId());
433  m_isInternal = tTopo.tidModuleInfo(detId.rawId())[0];
434  } else if (subdetId == StripSubdetector::TEC) {
435  m_layer = tTopo.tecWheel(detId.rawId());
436  m_side = tTopo.tecSide(detId.rawId());
437  m_isRphi = tTopo.isRPhi(detId.rawId());
438  m_ring = tTopo.tecRing(detId.rawId());
439  m_isDoubleSide = tTopo.tecIsDoubleSide(detId.rawId());
440  m_isInternal = tTopo.tecPetalInfo(detId.rawId())[0];
441  } else if (subdetId == PixelSubdetector::PixelBarrel) {
442  m_layer = tTopo.pxbLayer(detId.rawId());
443  m_isInternal = !AlignmentPI::isBPixOuterLadder(detId, tTopo, isPhase0);
444  } else if (subdetId == PixelSubdetector::PixelEndcap) {
445  m_layer = tTopo.pxfDisk(detId.rawId());
446  m_side = tTopo.pxfSide(detId.rawId());
447  } else
448  edm::LogWarning("LogicError") << "Unknown subdetid: " << subdetId;
449  }
static constexpr auto TEC
bool tibIsDoubleSide(const DetId &id) const
bool tecIsDoubleSide(const DetId &id) const
bool tidIsDoubleSide(const DetId &id) const
unsigned int tobLayer(const DetId &id) const
unsigned int pxbLayer(const DetId &id) const
unsigned int tibSide(const DetId &id) const
unsigned int tobSide(const DetId &id) const
std::vector< unsigned int > tidModuleInfo(const DetId &id) const
unsigned int tidSide(const DetId &id) const
std::vector< unsigned int > tecPetalInfo(const DetId &id) const
unsigned int tidWheel(const DetId &id) const
unsigned int tecWheel(const DetId &id) const
bool isBPixOuterLadder(const DetId &detid, const TrackerTopology &tTopo, bool isPhase0)
bool isRPhi(const DetId &id) const
unsigned int tecRing(const DetId &id) const
ring id
bool tobIsDoubleSide(const DetId &id) const
unsigned int tecSide(const DetId &id) const
unsigned int pxfDisk(const DetId &id) const
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:48
static constexpr auto TOB
unsigned int pxfSide(const DetId &id) const
static constexpr auto TIB
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
bool tibIsInternalString(const DetId &id) const
unsigned int tidRing(const DetId &id) const
unsigned int tibLayer(const DetId &id) const
unsigned int tobModule(const DetId &id) const
Log< level::Warning, false > LogWarning
static constexpr auto TID

◆ filterThePartition()

AlignmentPI::regions AlignmentPI::topolInfo::filterThePartition ( )
inline

Definition at line 454 of file AlignmentPayloadInspectorHelper.h.

References AlignmentPI::BPixL1i, AlignmentPI::BPixL1o, AlignmentPI::BPixL2i, AlignmentPI::BPixL2o, AlignmentPI::BPixL3i, AlignmentPI::BPixL3o, AlignmentPI::BPixL4i, AlignmentPI::BPixL4o, AlignmentPI::FPixmL1, AlignmentPI::FPixmL2, AlignmentPI::FPixmL3, AlignmentPI::FPixpL1, AlignmentPI::FPixpL2, AlignmentPI::FPixpL3, m_isDoubleSide, m_isInternal, m_isRphi, m_layer, m_ring, m_side, m_subdetid, AlignmentPI::NUM_OF_REGIONS, runTheMatrix::ret, AlignmentPI::StripDoubleSide, AlignmentPI::TECmR1R, AlignmentPI::TECmR1S, AlignmentPI::TECmR2R, AlignmentPI::TECmR2S, AlignmentPI::TECmR3, AlignmentPI::TECmR4, AlignmentPI::TECmR5, AlignmentPI::TECmR6, AlignmentPI::TECmR7, AlignmentPI::TECpR1R, AlignmentPI::TECpR1S, AlignmentPI::TECpR2R, AlignmentPI::TECpR2S, AlignmentPI::TECpR3, AlignmentPI::TECpR4, AlignmentPI::TECpR5, AlignmentPI::TECpR6, AlignmentPI::TECpR7, AlignmentPI::TIBL1Ri, AlignmentPI::TIBL1Ro, AlignmentPI::TIBL1Si, AlignmentPI::TIBL1So, AlignmentPI::TIBL2Ri, AlignmentPI::TIBL2Ro, AlignmentPI::TIBL2Si, AlignmentPI::TIBL2So, AlignmentPI::TIBL3i, AlignmentPI::TIBL3o, AlignmentPI::TIBL4i, AlignmentPI::TIBL4o, AlignmentPI::TIDmR1R, AlignmentPI::TIDmR1S, AlignmentPI::TIDmR2R, AlignmentPI::TIDmR2S, AlignmentPI::TIDmR3, AlignmentPI::TIDpR1R, AlignmentPI::TIDpR1S, AlignmentPI::TIDpR2R, AlignmentPI::TIDpR2S, AlignmentPI::TIDpR3, AlignmentPI::TOBL1Ri, AlignmentPI::TOBL1Ro, AlignmentPI::TOBL1Si, AlignmentPI::TOBL1So, AlignmentPI::TOBL2Ri, AlignmentPI::TOBL2Ro, AlignmentPI::TOBL2Si, AlignmentPI::TOBL2So, AlignmentPI::TOBL3i, AlignmentPI::TOBL3o, AlignmentPI::TOBL4i, AlignmentPI::TOBL4o, AlignmentPI::TOBL5i, AlignmentPI::TOBL5o, AlignmentPI::TOBL6i, and AlignmentPI::TOBL6o.

456  {
458 
459  if (m_isDoubleSide) {
461  }
462 
463  // BPix
464  if (m_subdetid == 1) {
465  switch (m_layer) {
466  case 1:
468  break;
469  case 2:
471  break;
472  case 3:
474  break;
475  case 4:
477  break;
478  default:
479  edm::LogWarning("LogicError") << "Unknow BPix layer: " << m_layer;
480  break;
481  }
482  // FPix
483  } else if (m_subdetid == 2) {
484  switch (m_layer) {
485  case 1:
487  break;
488  case 2:
490  break;
491  case 3:
493  break;
494  default:
495  edm::LogWarning("LogicError") << "Unknow FPix disk: " << m_layer;
496  break;
497  }
498  // TIB
499  } else if (m_subdetid == 3) {
500  switch (m_layer) {
501  case 1:
502  if (m_isRphi) {
504  } else {
506  }
507  break;
508  case 2:
509  if (m_isRphi) {
511  } else {
513  }
514  break;
515  case 3:
517  break;
518  case 4:
520  break;
521  default:
522  edm::LogWarning("LogicError") << "Unknow TIB layer: " << m_layer;
523  break;
524  }
525  // TID
526  } else if (m_subdetid == 4) {
527  switch (m_ring) {
528  case 1:
529  if (m_isRphi) {
531  } else {
533  }
534  break;
535  case 2:
536  if (m_isRphi) {
538  } else {
540  }
541  break;
542  case 3:
544  break;
545  default:
546  edm::LogWarning("LogicError") << "Unknow TID wheel: " << m_layer;
547  break;
548  }
549  // TOB
550  } else if (m_subdetid == 5) {
551  switch (m_layer) {
552  case 1:
553  if (m_isRphi) {
555  } else {
557  }
558  break;
559  case 2:
560  if (m_isRphi) {
562  } else {
564  }
565  break;
566  case 3:
568  break;
569  case 4:
571  break;
572  case 5:
574  break;
575  case 6:
577  break;
578  default:
579  edm::LogWarning("LogicError") << "Unknow TOB layer: " << m_layer;
580  break;
581  }
582  // TEC
583  } else if (m_subdetid == 6) {
584  switch (m_ring) {
585  case 1:
586  if (m_isRphi) {
588  } else {
590  }
591  break;
592  case 2:
593  if (m_isRphi) {
595  } else {
597  }
598  break;
599  case 3:
601  break;
602  case 4:
604  break;
605  case 5:
607  break;
608  case 6:
610  break;
611  case 7:
613  break;
614  default:
615  edm::LogWarning("LogicError") << "Unknow TEC ring: " << m_ring;
616  break;
617  }
618  }
619 
620  return ret;
621  }
ret
prodAgent to be discontinued
Log< level::Warning, false > LogWarning

◆ init()

void AlignmentPI::topolInfo::init ( void  )
inline

◆ printAll()

void AlignmentPI::topolInfo::printAll ( )
inline

◆ sanityCheck()

bool AlignmentPI::topolInfo::sanityCheck ( )
inline

Definition at line 397 of file AlignmentPayloadInspectorHelper.h.

References m_layer, and m_subdetid.

399  {
400  if (m_layer == 0 || (m_subdetid == 1 && m_layer > 4) || (m_subdetid == 2 && m_layer > 3)) {
401  return false;
402  } else {
403  return true;
404  }
405  }

Member Data Documentation

◆ m_isDoubleSide

bool AlignmentPI::topolInfo::m_isDoubleSide
private

◆ m_isInternal

bool AlignmentPI::topolInfo::m_isInternal
private

◆ m_isRphi

bool AlignmentPI::topolInfo::m_isRphi
private

◆ m_layer

int AlignmentPI::topolInfo::m_layer
private

◆ m_rawid

uint32_t AlignmentPI::topolInfo::m_rawid
private

Definition at line 355 of file AlignmentPayloadInspectorHelper.h.

Referenced by fillGeometryInfo(), init(), and printAll().

◆ m_ring

int AlignmentPI::topolInfo::m_ring
private

◆ m_side

int AlignmentPI::topolInfo::m_side
private

◆ m_subdetid

int AlignmentPI::topolInfo::m_subdetid
private