CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Attributes | Static Private Attributes
TotemRPDetId Class Reference

Detector ID class for TOTEM Si strip detectors. More...

#include <TotemRPDetId.h>

Inheritance diagram for TotemRPDetId:
CTPPSDetId DetId

Public Member Functions

uint32_t chip () const
 
void chipName (std::string &name, NameFlag flag=nFull) const
 
bool isStripsCoordinateUDirection () const
 
bool isStripsCoordinateVDirection () const
 
uint32_t plane () const
 
uint32_t planeDecimalId () const
 
TotemRPDetId planeId () const
 
void planeName (std::string &name, NameFlag flag=nFull) const
 
uint32_t rpDecimalId () const
 
void setChip (uint32_t chip)
 
void setPlane (uint32_t det)
 
 TotemRPDetId (uint32_t id)
 
 TotemRPDetId (const CTPPSDetId &id)
 
 TotemRPDetId (uint32_t Arm, uint32_t Station, uint32_t RomanPot=0, uint32_t Plane=0, uint32_t Chip=0)
 Construct from hierarchy indeces. More...
 
- Public Member Functions inherited from CTPPSDetId
uint32_t arm () const
 
CTPPSDetId armId () const
 
void armName (std::string &name, NameFlag flag=nFull) const
 
 CTPPSDetId (uint32_t id)
 Construct from a raw id. More...
 
 CTPPSDetId (uint32_t SubDet, uint32_t Arm, uint32_t Station, uint32_t RomanPot=0)
 Construct from hierarchy indeces. More...
 
uint32_t rp () const
 
CTPPSDetId rpId () const
 
void rpName (std::string &name, NameFlag flag=nFull) const
 
void setArm (uint32_t arm)
 
void setRP (uint32_t rp)
 
void setStation (uint32_t station)
 
uint32_t station () const
 
CTPPSDetId stationId () const
 
void stationName (std::string &name, NameFlag flag=nFull) const
 
void subDetectorName (std::string &name, NameFlag flag=nFull) const
 
- Public Member Functions inherited from DetId
constexpr Detector det () const
 get the detector field from this detid More...
 
constexpr DetId ()
 Create an empty or null id (also for persistence) More...
 
constexpr DetId (uint32_t id)
 Create an id from a raw number. More...
 
constexpr DetId (Detector det, int subdet)
 Create an id, filling the detector and subdetector fields as specified. More...
 
constexpr bool null () const
 is this a null id ? More...
 
constexpr operator uint32_t () const
 
constexpr bool operator!= (DetId id) const
 inequality More...
 
constexpr uint32_t operator() () const
 
constexpr bool operator< (DetId id) const
 comparison More...
 
constexpr bool operator== (DetId id) const
 equality More...
 
constexpr uint32_t rawId () const
 get the raw id More...
 
constexpr int subdetId () const
 get the contents of the subdetector field (not cast into any detector's numbering enum) More...
 

Static Public Attributes

static const uint32_t lowMaskChip = 0x1FFF
 
static const uint32_t lowMaskPlane = 0x7FFF
 
static const uint32_t maskChip = 0x3
 
static const uint32_t maskPlane = 0xF
 
static const uint32_t maxChip = 3
 
static const uint32_t maxPlane = 9
 
static const uint32_t startChipBit = 13
 
static const uint32_t startPlaneBit = 15
 
- Static Public Attributes inherited from CTPPSDetId
static const uint32_t lowMaskArm = 0xFFFFFF
 
static const uint32_t lowMaskRP = 0x7FFFF
 
static const uint32_t lowMaskStation = 0x3FFFFF
 
static const uint32_t maskArm = 0x1
 
static const uint32_t maskRP = 0x7
 
static const uint32_t maskStation = 0x3
 
static const uint32_t maxArm = 1
 
static const uint32_t maxRP = 6
 
static const uint32_t maxStation = 2
 
static const uint32_t startArmBit = 24
 
static const uint32_t startRPBit = 19
 
static const uint32_t startStationBit = 22
 
- Static Public Attributes inherited from DetId
static const int kDetMask = 0xF
 
static const int kDetOffset = 28
 
static const int kSubdetMask = 0x7
 
static const int kSubdetOffset = 25
 

Static Private Attributes

static const std::string chipNames [] = {"1", "2", "3", "4"}
 
static const std::string planeNames [] = {"01", "02", "03", "04", "05", "06", "07", "08", "09", "10"}
 

Additional Inherited Members

- Public Types inherited from CTPPSDetId
enum  NameFlag { nShort, nFull, nPath }
 type of name returned by *Name functions More...
 
enum  SubDetector {
  sdTrackingStrip = 3, sdTrackingPixel = 4, sdTimingDiamond = 5, sdTimingFastSilicon = 6,
  sdTotemT2 = 7
}
 CTPPS sub-detectors. More...
 
- Public Types inherited from DetId
enum  Detector {
  Tracker = 1, Muon = 2, Ecal = 3, Hcal = 4,
  Calo = 5, Forward = 6, VeryForward = 7, HGCalEE = 8,
  HGCalHSi = 9, HGCalHSc = 10, HGCalTrigger = 11
}
 
- Protected Attributes inherited from DetId
uint32_t id_
 

Detailed Description

Detector ID class for TOTEM Si strip detectors.

Beyond the bit assignment in CTPPSDetId, this is the additional structure: Bits [15:18] => plane number from 0 (most near) to 9 (most far) Bits [13:14] => chip (VFAT) number Bits [0:12] => not assigned

Definition at line 30 of file TotemRPDetId.h.

Constructor & Destructor Documentation

◆ TotemRPDetId() [1/3]

TotemRPDetId::TotemRPDetId ( uint32_t  id)
explicit

Construct from a raw id. It is required that the Detector part of id is Totem and the SubDet part is RP, otherwise an exception is thrown.

Definition at line 28 of file TotemRPDetId.cc.

References DetId::det(), Exception, CTPPSDetId::sdTrackingStrip, DetId::subdetId(), and DetId::VeryForward.

Referenced by planeId().

28  : CTPPSDetId(id) {
29  bool inputOK = (det() == DetId::VeryForward && subdetId() == sdTrackingStrip);
30 
31  if (!inputOK) {
32  throw cms::Exception("InvalidDetId") << "TotemRPDetId ctor:"
33  << " det: " << det() << " subdet: " << subdetId()
34  << " is not a valid TotemRP id.";
35  }
36 }
constexpr Detector det() const
get the detector field from this detid
Definition: DetId.h:46
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:48
CTPPSDetId(uint32_t id)
Construct from a raw id.
Definition: CTPPSDetId.cc:41

◆ TotemRPDetId() [2/3]

TotemRPDetId::TotemRPDetId ( const CTPPSDetId id)
inline

Definition at line 36 of file TotemRPDetId.h.

36 : CTPPSDetId(id) {}
CTPPSDetId(uint32_t id)
Construct from a raw id.
Definition: CTPPSDetId.cc:41

◆ TotemRPDetId() [3/3]

TotemRPDetId::TotemRPDetId ( uint32_t  Arm,
uint32_t  Station,
uint32_t  RomanPot = 0,
uint32_t  Plane = 0,
uint32_t  Chip = 0 
)

Construct from hierarchy indeces.

Definition at line 40 of file TotemRPDetId.cc.

References Exception, DetId::id_, CTPPSDetId::maskArm, maskChip, maskPlane, CTPPSDetId::maskRP, CTPPSDetId::maskStation, CTPPSDetId::maxArm, maxChip, maxPlane, CTPPSDetId::maxRP, CTPPSDetId::maxStation, convertSQLiteXML::ok, CTPPSDetId::startArmBit, startChipBit, startPlaneBit, CTPPSDetId::startRPBit, and CTPPSDetId::startStationBit.

41  : CTPPSDetId(sdTrackingStrip, Arm, Station, RomanPot) {
42  if (Arm > maxArm || Station > maxStation || RomanPot > maxRP || Plane > maxPlane || Chip > maxChip) {
43  throw cms::Exception("InvalidDetId") << "TotemRPDetId ctor:"
44  << " Invalid parameters:"
45  << " arm=" << Arm << " station=" << Station << " rp=" << RomanPot
46  << " plane=" << Plane << " chip=" << Chip << std::endl;
47  }
48 
49  uint32_t ok = 0xfe000000;
50  id_ &= ok;
51 
52  id_ |= ((Arm & maskArm) << startArmBit);
53  id_ |= ((Station & maskStation) << startStationBit);
54  id_ |= ((RomanPot & maskRP) << startRPBit);
55  id_ |= ((Plane & maskPlane) << startPlaneBit);
56  id_ |= ((Chip & maskChip) << startChipBit);
57 }
static const uint32_t maskChip
Definition: TotemRPDetId.h:42
static const uint32_t startChipBit
Definition: TotemRPDetId.h:42
static const uint32_t maxStation
Definition: CTPPSDetId.h:52
static const uint32_t startRPBit
Definition: CTPPSDetId.h:53
Definition: Plane.h:16
static const uint32_t maskStation
Definition: CTPPSDetId.h:52
static const uint32_t maskRP
Definition: CTPPSDetId.h:53
static const uint32_t maskArm
Definition: CTPPSDetId.h:51
static const uint32_t maxArm
Definition: CTPPSDetId.h:51
static const uint32_t maxRP
Definition: CTPPSDetId.h:53
uint32_t id_
Definition: DetId.h:69
static const uint32_t startStationBit
Definition: CTPPSDetId.h:52
CTPPSDetId(uint32_t id)
Construct from a raw id.
Definition: CTPPSDetId.cc:41
static const uint32_t startPlaneBit
Definition: TotemRPDetId.h:41
static const uint32_t startArmBit
Definition: CTPPSDetId.h:51
static const uint32_t maxChip
Definition: TotemRPDetId.h:42
static const uint32_t maskPlane
Definition: TotemRPDetId.h:41
static const uint32_t maxPlane
Definition: TotemRPDetId.h:41

Member Function Documentation

◆ chip()

uint32_t TotemRPDetId::chip ( ) const
inline

Definition at line 53 of file TotemRPDetId.h.

References DetId::id_, maskChip, and startChipBit.

Referenced by chipName(), RawToDigiConverter::run(), and setChip().

53 { return ((id_ >> startChipBit) & maskChip); }
static const uint32_t maskChip
Definition: TotemRPDetId.h:42
static const uint32_t startChipBit
Definition: TotemRPDetId.h:42
uint32_t id_
Definition: DetId.h:69

◆ chipName()

void TotemRPDetId::chipName ( std::string &  name,
NameFlag  flag = nFull 
) const
inline

Definition at line 97 of file TotemRPDetId.h.

References chip(), chipNames, RemoveAddSevLevel::flag, Skims_PA_cff::name, CTPPSDetId::nFull, CTPPSDetId::nPath, CTPPSDetId::nShort, and planeName().

97  {
98  switch (flag) {
99  case nShort:
100  name = "";
101  break;
102  case nFull:
103  planeName(name, flag);
104  name += "_";
105  break;
106  case nPath:
107  planeName(name, flag);
108  name += "/chip ";
109  break;
110  }
111 
112  name += chipNames[chip()];
113  }
uint32_t chip() const
Definition: TotemRPDetId.h:53
void planeName(std::string &name, NameFlag flag=nFull) const
Definition: TotemRPDetId.h:79
static const std::string chipNames[]
Definition: TotemRPDetId.h:117

◆ isStripsCoordinateUDirection()

bool TotemRPDetId::isStripsCoordinateUDirection ( ) const
inline

Definition at line 66 of file TotemRPDetId.h.

References plane().

Referenced by TotemRPDQMSource::analyze(), and isStripsCoordinateVDirection().

66 { return plane() % 2; }
uint32_t plane() const
Definition: TotemRPDetId.h:46

◆ isStripsCoordinateVDirection()

bool TotemRPDetId::isStripsCoordinateVDirection ( ) const
inline

Definition at line 68 of file TotemRPDetId.h.

References isStripsCoordinateUDirection().

68 { return !isStripsCoordinateUDirection(); }
bool isStripsCoordinateUDirection() const
Definition: TotemRPDetId.h:66

◆ plane()

uint32_t TotemRPDetId::plane ( ) const
inline

◆ planeDecimalId()

uint32_t TotemRPDetId::planeDecimalId ( ) const
inline

Definition at line 75 of file TotemRPDetId.h.

References plane(), and rpDecimalId().

75 { return plane() + rpDecimalId() * 10; }
uint32_t rpDecimalId() const
Definition: TotemRPDetId.h:73
uint32_t plane() const
Definition: TotemRPDetId.h:46

◆ planeId()

TotemRPDetId TotemRPDetId::planeId ( ) const
inline

Definition at line 62 of file TotemRPDetId.h.

References lowMaskPlane, DetId::rawId(), and TotemRPDetId().

Referenced by RawToDigiConverter::run().

62 { return TotemRPDetId(rawId() & (~lowMaskPlane)); }
TotemRPDetId(uint32_t id)
Definition: TotemRPDetId.cc:28
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
static const uint32_t lowMaskPlane
Definition: TotemRPDetId.h:41

◆ planeName()

void TotemRPDetId::planeName ( std::string &  name,
NameFlag  flag = nFull 
) const
inline

Definition at line 79 of file TotemRPDetId.h.

References RemoveAddSevLevel::flag, Skims_PA_cff::name, CTPPSDetId::nFull, CTPPSDetId::nPath, CTPPSDetId::nShort, plane(), planeNames, and CTPPSDetId::rpName().

Referenced by chipName(), TotemRPDQMHarvester::MakePlaneEfficiencyHistograms(), and TotemRPDQMSource::PlanePlots::PlanePlots().

79  {
80  switch (flag) {
81  case nShort:
82  name = "";
83  break;
84  case nFull:
85  rpName(name, flag);
86  name += "_";
87  break;
88  case nPath:
89  rpName(name, flag);
90  name += "/plane ";
91  break;
92  }
93 
94  name += planeNames[plane()];
95  }
uint32_t plane() const
Definition: TotemRPDetId.h:46
void rpName(std::string &name, NameFlag flag=nFull) const
Definition: CTPPSDetId.h:134
static const std::string planeNames[]
Definition: TotemRPDetId.h:116

◆ rpDecimalId()

uint32_t TotemRPDetId::rpDecimalId ( ) const
inline

Definition at line 73 of file TotemRPDetId.h.

References CTPPSDetId::arm(), CTPPSDetId::rp(), and CTPPSDetId::station().

Referenced by planeDecimalId().

73 { return rp() + station() * 10 + arm() * 100; }
uint32_t arm() const
Definition: CTPPSDetId.h:57
uint32_t rp() const
Definition: CTPPSDetId.h:71
uint32_t station() const
Definition: CTPPSDetId.h:64

◆ setChip()

void TotemRPDetId::setChip ( uint32_t  chip)
inline

Definition at line 55 of file TotemRPDetId.h.

References chip(), DetId::id_, maskChip, and startChipBit.

55  {
56  id_ &= ~(maskChip << startChipBit);
57  id_ |= ((chip & maskChip) << startChipBit);
58  }
static const uint32_t maskChip
Definition: TotemRPDetId.h:42
static const uint32_t startChipBit
Definition: TotemRPDetId.h:42
uint32_t chip() const
Definition: TotemRPDetId.h:53
uint32_t id_
Definition: DetId.h:69

◆ setPlane()

void TotemRPDetId::setPlane ( uint32_t  det)
inline

Definition at line 48 of file TotemRPDetId.h.

References DetId::det(), DetId::id_, maskPlane, and startPlaneBit.

Referenced by TotemRPDQMSource::analyze(), and TotemTimingDQMSource::analyze().

48  {
49  id_ &= ~(maskPlane << startPlaneBit);
50  id_ |= ((det & maskPlane) << startPlaneBit);
51  }
constexpr Detector det() const
get the detector field from this detid
Definition: DetId.h:46
uint32_t id_
Definition: DetId.h:69
static const uint32_t startPlaneBit
Definition: TotemRPDetId.h:41
static const uint32_t maskPlane
Definition: TotemRPDetId.h:41

Member Data Documentation

◆ chipNames

const string TotemRPDetId::chipNames = {"1", "2", "3", "4"}
staticprivate

Definition at line 117 of file TotemRPDetId.h.

Referenced by chipName().

◆ lowMaskChip

const uint32_t TotemRPDetId::lowMaskChip = 0x1FFF
static

Definition at line 42 of file TotemRPDetId.h.

◆ lowMaskPlane

const uint32_t TotemRPDetId::lowMaskPlane = 0x7FFF
static

Definition at line 41 of file TotemRPDetId.h.

Referenced by planeId().

◆ maskChip

const uint32_t TotemRPDetId::maskChip = 0x3
static

Definition at line 42 of file TotemRPDetId.h.

Referenced by chip(), setChip(), and TotemRPDetId().

◆ maskPlane

const uint32_t TotemRPDetId::maskPlane = 0xF
static

Definition at line 41 of file TotemRPDetId.h.

Referenced by plane(), RPDisplacementGenerator::rawToDecId(), setPlane(), and TotemRPDetId().

◆ maxChip

const uint32_t TotemRPDetId::maxChip = 3
static

Definition at line 42 of file TotemRPDetId.h.

Referenced by TotemRPDetId().

◆ maxPlane

const uint32_t TotemRPDetId::maxPlane = 9
static

Definition at line 41 of file TotemRPDetId.h.

Referenced by TotemRPDetId().

◆ planeNames

const string TotemRPDetId::planeNames = {"01", "02", "03", "04", "05", "06", "07", "08", "09", "10"}
staticprivate

Definition at line 116 of file TotemRPDetId.h.

Referenced by planeName().

◆ startChipBit

const uint32_t TotemRPDetId::startChipBit = 13
static

Definition at line 42 of file TotemRPDetId.h.

Referenced by chip(), setChip(), and TotemRPDetId().

◆ startPlaneBit

const uint32_t TotemRPDetId::startPlaneBit = 15
static

Definition at line 41 of file TotemRPDetId.h.

Referenced by plane(), RPDisplacementGenerator::rawToDecId(), setPlane(), and TotemRPDetId().