CMS 3D CMS Logo

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

#include <CTPPSPixelDetId.h>

Inheritance diagram for CTPPSPixelDetId:
CTPPSDetId DetId

Public Member Functions

 CTPPSPixelDetId (uint32_t id)
 Construct from a packed id. More...
 
 CTPPSPixelDetId (const CTPPSDetId &id)
 
 CTPPSPixelDetId (uint32_t Arm, uint32_t Station, uint32_t RP=0, uint32_t Plane=0)
 Construct from fully qualified identifier. More...
 
uint32_t plane () const
 
void set (uint32_t a, uint32_t b, uint32_t c, uint32_t d)
 
void setPlane (uint32_t pl)
 
- 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 Member Functions

static bool check (unsigned int raw)
 

Static Public Attributes

static const uint32_t maskPlane = 0x7
 
static const uint32_t maxPlane = 5
 
static const uint32_t startPlaneBit = 16
 
- 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
 

Private Member Functions

void init (uint32_t Arm, uint32_t Station, uint32_t RP, uint32_t Plane)
 

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

Definition at line 16 of file CTPPSPixelDetId.h.

Constructor & Destructor Documentation

◆ CTPPSPixelDetId() [1/3]

CTPPSPixelDetId::CTPPSPixelDetId ( uint32_t  id)
explicit

Construct from a packed id.

Definition at line 13 of file CTPPSPixelDetId.cc.

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

13  : CTPPSDetId(id) {
14  if (!check(id)) {
15  throw cms::Exception("InvalidDetId") << "CTPPSPixelDetId ctor:"
16  << " det: " << det() << " subdet: " << subdetId()
17  << " is not a valid CTPPS Pixel id";
18  }
19 }
static bool check(unsigned int raw)
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:35

◆ CTPPSPixelDetId() [2/3]

CTPPSPixelDetId::CTPPSPixelDetId ( const CTPPSDetId id)
inline

Definition at line 21 of file CTPPSPixelDetId.h.

21 : CTPPSDetId(id) {}
CTPPSDetId(uint32_t id)
Construct from a raw id.
Definition: CTPPSDetId.cc:35

◆ CTPPSPixelDetId() [3/3]

CTPPSPixelDetId::CTPPSPixelDetId ( uint32_t  Arm,
uint32_t  Station,
uint32_t  RP = 0,
uint32_t  Plane = 0 
)

Construct from fully qualified identifier.

Member Function Documentation

◆ check()

static bool CTPPSPixelDetId::check ( unsigned int  raw)
inlinestatic

Definition at line 32 of file CTPPSPixelDetId.h.

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

Referenced by CTPPSPixelDetId().

32  {
33  return (((raw >> DetId::kDetOffset) & 0xF) == DetId::VeryForward &&
34  ((raw >> DetId::kSubdetOffset) & 0x7) == sdTrackingPixel);
35  }
static const int kSubdetOffset
Definition: DetId.h:22
static const int kDetOffset
Definition: DetId.h:21

◆ init()

void CTPPSPixelDetId::init ( uint32_t  Arm,
uint32_t  Station,
uint32_t  RP,
uint32_t  Plane 
)
private

Definition at line 26 of file CTPPSPixelDetId.cc.

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

Referenced by set().

26  {
27  if (Arm > maxArm || Station > maxStation || RP > maxRP || Plane > maxPlane) {
28  throw cms::Exception("InvalidDetId") << "CTPPSPixelDetId ctor:"
29  << " Invalid parameterss: "
30  << " Arm " << Arm << " Station " << Station << " RP " << RP << " Plane "
31  << Plane << std::endl;
32  }
33 
34  uint32_t ok = 0xfe000000;
35  id_ &= ok;
36 
37  id_ |= ((Arm & maskArm) << startArmBit);
38  id_ |= ((Station & maskStation) << startStationBit);
39  id_ |= ((RP & maskRP) << startRPBit);
40  id_ |= ((Plane & maskPlane) << startPlaneBit);
41 }
static const uint32_t maxStation
Definition: CTPPSDetId.h:46
static const uint32_t maskPlane
static const uint32_t startRPBit
Definition: CTPPSDetId.h:47
Definition: Plane.h:16
static const uint32_t maskStation
Definition: CTPPSDetId.h:46
static const uint32_t maxPlane
static const uint32_t maskRP
Definition: CTPPSDetId.h:47
static const uint32_t startPlaneBit
static const uint32_t maskArm
Definition: CTPPSDetId.h:45
static const uint32_t maxArm
Definition: CTPPSDetId.h:45
static const uint32_t maxRP
Definition: CTPPSDetId.h:47
uint32_t id_
Definition: DetId.h:69
static const uint32_t startStationBit
Definition: CTPPSDetId.h:46
static const uint32_t startArmBit
Definition: CTPPSDetId.h:45

◆ plane()

uint32_t CTPPSPixelDetId::plane ( ) const
inline

◆ set()

void CTPPSPixelDetId::set ( uint32_t  a,
uint32_t  b,
uint32_t  c,
uint32_t  d 
)
inline

Definition at line 39 of file CTPPSPixelDetId.h.

References b, c, ztail::d, and init().

39 { this->init(a, b, c, d); }
d
Definition: ztail.py:151
double b
Definition: hdecay.h:118
void init(uint32_t Arm, uint32_t Station, uint32_t RP, uint32_t Plane)
double a
Definition: hdecay.h:119

◆ setPlane()

void CTPPSPixelDetId::setPlane ( uint32_t  pl)
inline

Definition at line 41 of file CTPPSPixelDetId.h.

References DetId::id_, maskPlane, and startPlaneBit.

Referenced by RPixPlaneCombinatoryTracking::findTracks(), and RPixPlaneCombinatoryTracking::produceAllHitCombination().

41  {
42  id_ &= ~(maskPlane << startPlaneBit);
43  id_ |= ((pl & maskPlane) << startPlaneBit);
44  }
static const uint32_t maskPlane
static const uint32_t startPlaneBit
uint32_t id_
Definition: DetId.h:69

Member Data Documentation

◆ maskPlane

const uint32_t CTPPSPixelDetId::maskPlane = 0x7
static

Definition at line 30 of file CTPPSPixelDetId.h.

Referenced by init(), plane(), and setPlane().

◆ maxPlane

const uint32_t CTPPSPixelDetId::maxPlane = 5
static

Definition at line 30 of file CTPPSPixelDetId.h.

Referenced by init().

◆ startPlaneBit

const uint32_t CTPPSPixelDetId::startPlaneBit = 16
static

Bit 24 = Arm: 0=z>0 1=z<0 Bits [22:23] Station (0 = 210 or ex 147) Bits [19:21] RP Bits [16:18] Si Plane

Definition at line 30 of file CTPPSPixelDetId.h.

Referenced by init(), plane(), and setPlane().