CMS 3D CMS Logo

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

Detector ID class for CTPPS Timing Diamond detectors. Bits [19:31] : Assigend in CTPPSDetId Calss Bits [17:18] : 2 bits for diamond plane 0,1,2,3 Bits [12:16] : 5 bits for Diamond channel numbers 1,2,3,..16 Bits [0:11] : unspecified yet. More...

#include <CTPPSDiamondDetId.h>

Inheritance diagram for CTPPSDiamondDetId:
CTPPSDetId DetId

Public Member Functions

uint32_t channel () const
 
void channelName (std::string &name, NameFlag flag=nFull) const
 
 CTPPSDiamondDetId (uint32_t id)
 Construct from a raw id. More...
 
 CTPPSDiamondDetId (const CTPPSDetId &id)
 
 CTPPSDiamondDetId (uint32_t Arm, uint32_t Station, uint32_t RomanPot=0, uint32_t Plane=0, uint32_t Channel=0)
 Construct from hierarchy indeces. More...
 
CTPPSDiamondDetId getPlaneId () const
 
uint32_t plane () const
 
void planeName (std::string &name, NameFlag flag=nFull) const
 
void setChannel (uint32_t channel)
 
void setPlane (uint32_t channel)
 
- Public Member Functions inherited from CTPPSDetId
uint32_t arm () 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...
 
CTPPSDetId getArmId () const
 
CTPPSDetId getRPId () const
 
CTPPSDetId getStationId () const
 
uint32_t rp () 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
 
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 Member Functions

static bool check (unsigned int raw)
 returns true if the raw ID is a PPS-timing one More...
 

Static Public Attributes

static const uint32_t lowMaskChannel = 0xFFF
 
static const uint32_t lowMaskPlane = 0x1FFFF
 
static const uint32_t maskChannel = 0x1F
 
static const uint32_t maskPlane = 0x3
 
static const uint32_t maxChannel = 31
 
static const uint32_t maxPlane = 3
 
static const uint32_t startDetBit = 12
 
static const uint32_t startPlaneBit = 17
 
- 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
 

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 }
 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 CTPPS Timing Diamond detectors. Bits [19:31] : Assigend in CTPPSDetId Calss Bits [17:18] : 2 bits for diamond plane 0,1,2,3 Bits [12:16] : 5 bits for Diamond channel numbers 1,2,3,..16 Bits [0:11] : unspecified yet.

Definition at line 25 of file CTPPSDiamondDetId.h.

Constructor & Destructor Documentation

CTPPSDiamondDetId::CTPPSDiamondDetId ( uint32_t  id)
explicit

Construct from a raw id.

Definition at line 21 of file CTPPSDiamondDetId.cc.

References channel(), check(), Exception, and DetId::subdetId().

Referenced by CTPPSDiamondDetId(), and getPlaneId().

21  : CTPPSDetId(id) {
22  if (!check(id)) {
23  throw cms::Exception("InvalidDetId") << "CTPPSDiamondDetId ctor:"
24  << " channel: " << channel() << " subdet: " << subdetId()
25  << " is not a valid CTPPS Timing Diamond id";
26  }
27 }
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:41
static bool check(unsigned int raw)
returns true if the raw ID is a PPS-timing one
uint32_t channel() const
CTPPSDetId(uint32_t id)
Construct from a raw id.
Definition: CTPPSDetId.cc:35
CTPPSDiamondDetId::CTPPSDiamondDetId ( const CTPPSDetId id)
inline

Definition at line 30 of file CTPPSDiamondDetId.h.

References CTPPSDiamondDetId().

30 : CTPPSDetId(id) {}
CTPPSDetId(uint32_t id)
Construct from a raw id.
Definition: CTPPSDetId.cc:35
CTPPSDiamondDetId::CTPPSDiamondDetId ( uint32_t  Arm,
uint32_t  Station,
uint32_t  RomanPot = 0,
uint32_t  Plane = 0,
uint32_t  Channel = 0 
)

Construct from hierarchy indeces.

Definition at line 31 of file CTPPSDiamondDetId.cc.

References Exception, DetId::id_, CTPPSDetId::maskArm, maskChannel, maskPlane, CTPPSDetId::maskRP, CTPPSDetId::maskStation, CTPPSDetId::maxArm, maxChannel, maxPlane, CTPPSDetId::maxRP, CTPPSDetId::maxStation, convertSQLiteXML::ok, CTPPSDetId::startArmBit, startDetBit, startPlaneBit, CTPPSDetId::startRPBit, and CTPPSDetId::startStationBit.

32  : CTPPSDetId(sdTimingDiamond, Arm, Station, RomanPot) {
33  if (Arm > maxArm || Station > maxStation || RomanPot > maxRP || Plane > maxPlane || Channel > maxChannel) {
34  throw cms::Exception("InvalidDetId") << "CTPPSDiamondDetId ctor:"
35  << " Invalid parameters:"
36  << " arm=" << Arm << " station=" << Station << " rp=" << RomanPot
37  << " plane=" << Plane << " detector=" << Channel << std::endl;
38  }
39 
40  uint32_t ok = 0xfe000000;
41  id_ &= ok;
42 
43  id_ |= ((Arm & maskArm) << startArmBit);
44  id_ |= ((Station & maskStation) << startStationBit);
45  id_ |= ((RomanPot & maskRP) << startRPBit);
46  id_ |= ((Plane & maskPlane) << startPlaneBit);
47  id_ |= ((Channel & maskChannel) << startDetBit);
48 }
static const uint32_t maxStation
Definition: CTPPSDetId.h:46
static const uint32_t maxChannel
static const uint32_t startRPBit
Definition: CTPPSDetId.h:47
static const uint32_t maskChannel
Definition: Plane.h:17
static const uint32_t maskStation
Definition: CTPPSDetId.h:46
static const uint32_t maskRP
Definition: CTPPSDetId.h:47
static const uint32_t maskArm
Definition: CTPPSDetId.h:45
static const uint32_t maxArm
Definition: CTPPSDetId.h:45
static const uint32_t maxPlane
static const uint32_t maxRP
Definition: CTPPSDetId.h:47
static const uint32_t startPlaneBit
uint32_t id_
Definition: DetId.h:62
static const uint32_t startStationBit
Definition: CTPPSDetId.h:46
CTPPSDetId(uint32_t id)
Construct from a raw id.
Definition: CTPPSDetId.cc:35
static const uint32_t startArmBit
Definition: CTPPSDetId.h:45
static const uint32_t startDetBit
static const uint32_t maskPlane
DQMChannel Channel

Member Function Documentation

uint32_t CTPPSDiamondDetId::channel ( ) const
inline

Definition at line 52 of file CTPPSDiamondDetId.h.

References DetId::id_.

Referenced by channelName(), CTPPSDiamondDetId(), CTPPSGeometryInfo::formatDetId(), and CTPPSDiamondDQMSource::globalEndLuminosityBlock().

52 { return ((id_ >> startDetBit) & maskChannel); }
static const uint32_t maskChannel
uint32_t id_
Definition: DetId.h:62
static const uint32_t startDetBit
void CTPPSDiamondDetId::channelName ( std::string &  name,
NameFlag  flag = nFull 
) const
inline

Definition at line 83 of file CTPPSDiamondDetId.h.

References channel(), RemoveAddSevLevel::flag, CTPPSDetId::nFull, CTPPSDetId::nPath, CTPPSDetId::nShort, operator<<(), and planeName().

Referenced by CTPPSDiamondDQMSource::ChannelPlots::ChannelPlots().

83  {
84  switch (flag) {
85  case nShort:
86  name = "";
87  break;
88  case nFull:
90  name += "_";
91  break;
92  case nPath:
94  name += "/channel ";
95  break;
96  }
97 
98  name += std::to_string(channel());
99  }
uint32_t channel() const
void planeName(std::string &name, NameFlag flag=nFull) const
static bool CTPPSDiamondDetId::check ( unsigned int  raw)
inlinestatic

returns true if the raw ID is a PPS-timing one

Definition at line 39 of file CTPPSDiamondDetId.h.

References DetId::kDetOffset, DetId::kSubdetOffset, CTPPSDetId::sdTimingDiamond, and DetId::VeryForward.

Referenced by CTPPSDiamondDetId().

39  {
40  return (((raw >> DetId::kDetOffset) & 0xF) == DetId::VeryForward &&
41  ((raw >> DetId::kSubdetOffset) & 0x7) == sdTimingDiamond);
42  }
static const int kSubdetOffset
Definition: DetId.h:23
static const int kDetOffset
Definition: DetId.h:22
CTPPSDiamondDetId CTPPSDiamondDetId::getPlaneId ( ) const
inline

Definition at line 61 of file CTPPSDiamondDetId.h.

References CTPPSDiamondDetId(), and DetId::rawId().

61 { return CTPPSDiamondDetId(rawId() & (~lowMaskPlane)); }
CTPPSDiamondDetId(uint32_t id)
Construct from a raw id.
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:50
static const uint32_t lowMaskPlane
uint32_t CTPPSDiamondDetId::plane ( ) const
inline
void CTPPSDiamondDetId::planeName ( std::string &  name,
NameFlag  flag = nFull 
) const
inline

Definition at line 65 of file CTPPSDiamondDetId.h.

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

Referenced by channelName(), and CTPPSDiamondDQMSource::PlanePlots::PlanePlots().

65  {
66  switch (flag) {
67  case nShort:
68  name = "";
69  break;
70  case nFull:
71  rpName(name, flag);
72  name += "_";
73  break;
74  case nPath:
75  rpName(name, flag);
76  name += "/plane ";
77  break;
78  }
79 
80  name += std::to_string(plane());
81  }
void rpName(std::string &name, NameFlag flag=nFull) const
Definition: CTPPSDetId.h:128
uint32_t plane() const
void CTPPSDiamondDetId::setChannel ( uint32_t  channel)
inline

Definition at line 54 of file CTPPSDiamondDetId.h.

References DetId::id_, maskChannel, and startDetBit.

Referenced by CTPPSDiamondDQMSource::analyze().

54  {
55  id_ &= ~(maskChannel << startDetBit);
56  id_ |= ((channel & maskChannel) << startDetBit);
57  }
static const uint32_t maskChannel
uint32_t channel() const
uint32_t id_
Definition: DetId.h:62
static const uint32_t startDetBit
void CTPPSDiamondDetId::setPlane ( uint32_t  channel)
inline

Definition at line 47 of file CTPPSDiamondDetId.h.

References DetId::id_, maskPlane, and startPlaneBit.

Referenced by CTPPSDiamondDQMSource::analyze(), and CTPPSDiamondDQMSource::globalEndLuminosityBlock().

47  {
48  id_ &= ~(maskPlane << startPlaneBit);
49  id_ |= ((channel & maskPlane) << startPlaneBit);
50  }
static const uint32_t startPlaneBit
uint32_t channel() const
uint32_t id_
Definition: DetId.h:62
static const uint32_t maskPlane

Member Data Documentation

const uint32_t CTPPSDiamondDetId::lowMaskChannel = 0xFFF
static

Definition at line 36 of file CTPPSDiamondDetId.h.

const uint32_t CTPPSDiamondDetId::lowMaskPlane = 0x1FFFF
static

Definition at line 35 of file CTPPSDiamondDetId.h.

const uint32_t CTPPSDiamondDetId::maskChannel = 0x1F
static

Definition at line 36 of file CTPPSDiamondDetId.h.

Referenced by CTPPSDiamondDetId(), and setChannel().

const uint32_t CTPPSDiamondDetId::maskPlane = 0x3
static

Definition at line 35 of file CTPPSDiamondDetId.h.

Referenced by CTPPSDiamondDetId(), and setPlane().

const uint32_t CTPPSDiamondDetId::maxChannel = 31
static

Definition at line 36 of file CTPPSDiamondDetId.h.

Referenced by CTPPSDiamondDetId().

const uint32_t CTPPSDiamondDetId::maxPlane = 3
static

Definition at line 35 of file CTPPSDiamondDetId.h.

Referenced by CTPPSDiamondDetId().

const uint32_t CTPPSDiamondDetId::startDetBit = 12
static

Definition at line 36 of file CTPPSDiamondDetId.h.

Referenced by CTPPSDiamondDetId(), and setChannel().

const uint32_t CTPPSDiamondDetId::startPlaneBit = 17
static

Definition at line 35 of file CTPPSDiamondDetId.h.

Referenced by CTPPSDiamondDetId(), and setPlane().