CMS 3D CMS Logo

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

#include <RPCDetId.h>

Inheritance diagram for RPCDetId:
DetId

Public Member Functions

void buildfromDB (int region, int ring, int layer, int sector, const std::string &subsector, const std::string &roll, const std::string &dbname)
 
void buildfromTrIndex (int trIndex)
 Built from the trigger det Index. More...
 
RPCDetId chamberId () const
 Return the corresponding ChamberId. More...
 
int layer () const
 
bool operator< (const RPCDetId &r) const
 Sort Operator based on the raw detector id. More...
 
int region () const
 Region id: 0 for Barrel, +/-1 For +/- Endcap. More...
 
int ring () const
 
int roll () const
 
 RPCDetId ()
 
 RPCDetId (DetId id)
 
 RPCDetId (int region, int ring, int station, int sector, int layer, int subsector, int roll)
 Construct from fully qualified identifier. More...
 
 RPCDetId (uint32_t id)
 
int sector () const
 Sector id: the group of chambers at same phi (and increasing r) More...
 
int station () const
 
int subsector () const
 SubSector id : some sectors are divided along the phi direction in subsectors (from 1 to 4 in Barrel, from 1 to 6 in Endcap) More...
 
int trIndex () 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 (Detector det, int subdet)
 Create an id, filling the detector and subdetector fields as specified. More...
 
constexpr DetId (uint32_t id)
 Create an id from a raw number. 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 int maxLayerId = 2
 
static const int maxRegionId = 1
 
static const int maxRingBarrelId = 2
 
static const int maxRingForwardId = 3
 
static const int maxRollId = 5
 
static const int maxSectorBarrelId = 12
 
static const int maxSectorForwardId = 6
 
static const int maxSectorId = 12
 
static const int maxStationId = 4
 
static const int maxSubSectorBarrelId = 4
 
static const int maxSubSectorForwardId = 6
 
static const int maxSubSectorId = 6
 
static const int minLayerId = 1
 
static const int minRegionId = -1
 
static const int minRingBarrelId = -2
 
static const int minRingForwardId = 1
 
static const int minRollId = 0
 
static const int minSectorBarrelId = 1
 
static const int minSectorForwardId = 1
 
static const int minSectorId = 0
 
static const int minStationId = 1
 
static const int minSubSectorBarrelId = 1
 
static const int minSubSectorForwardId = 1
 
static const int minSubSectorId = 0
 
static const int RingBarrelOffSet = 3
 
- 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 (int region, int ring, int station, int sector, int layer, int subsector, int roll)
 

Private Attributes

int trind
 

Static Private Attributes

static const uint32_t chamberIdMask_ = ~(RollMask_ << RollStartBit_)
 
static const unsigned int LayerMask_ = 0X1
 
static const int LayerNumBits_ = 1
 
static const int LayerStartBit_ = SectorStartBit_ + SectorNumBits_
 
static const int RegionMask_ = 0X3
 
static const int RegionNumBits_ = 2
 
static const int RegionStartBit_ = 0
 
static const unsigned int RingMask_ = 0X7
 
static const int RingNumBits_ = 3
 
static const int RingStartBit_ = RegionStartBit_ + RegionNumBits_
 
static const unsigned int RollMask_ = 0X7
 
static const int RollNumBits_ = 3
 
static const int RollStartBit_ = SubSectorStartBit_ + SubSectorNumBits_
 
static const unsigned int SectorMask_ = 0XF
 
static const int SectorNumBits_ = 4
 
static const int SectorStartBit_ = StationStartBit_ + StationNumBits_
 
static const unsigned int StationMask_ = 0X3
 
static const int StationNumBits_ = 2
 
static const int StationStartBit_ = RingStartBit_ + RingNumBits_
 
static const unsigned int SubSectorMask_ = 0X7
 
static const int SubSectorNumBits_ = 3
 
static const int SubSectorStartBit_ = LayerStartBit_ + LayerNumBits_
 

Additional Inherited Members

- 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

DetUnit identifier for RPCs

Author
Ilaria Segoni

Definition at line 16 of file RPCDetId.h.

Constructor & Destructor Documentation

◆ RPCDetId() [1/4]

RPCDetId::RPCDetId ( )

Definition at line 13 of file RPCDetId.cc.

Referenced by chamberId().

◆ RPCDetId() [2/4]

RPCDetId::RPCDetId ( uint32_t  id)

Construct from a packed id. It is required that the Detector part of id is Muon and the SubDet part is RPC, otherwise an exception is thrown.

Definition at line 15 of file RPCDetId.cc.

15  : DetId(id), trind(0) {
16  // std::cout<<" constructor of the RPCDetId" <<std::endl;
17  if (det() != DetId::Muon || subdetId() != MuonSubdetId::RPC) {
18  throw cms::Exception("InvalidDetId") << "RPCDetId ctor:"
19  << " det: " << det() << " subdet: " << subdetId() << " is not a valid RPC id";
20  }
21 }

References DetId::det(), Exception, DetId::Muon, MuonSubdetId::RPC, and DetId::subdetId().

◆ RPCDetId() [3/4]

RPCDetId::RPCDetId ( DetId  id)

Definition at line 22 of file RPCDetId.cc.

22  : DetId(id), trind(0) {
23  // std::cout<<" constructor of the RPCDetId" <<std::endl;
24  if (det() != DetId::Muon || subdetId() != MuonSubdetId::RPC) {
25  throw cms::Exception("InvalidDetId") << "RPCDetId ctor:"
26  << " det: " << det() << " subdet: " << subdetId() << " is not a valid RPC id";
27  }
28 }

References DetId::det(), Exception, DetId::Muon, MuonSubdetId::RPC, and DetId::subdetId().

◆ RPCDetId() [4/4]

RPCDetId::RPCDetId ( int  region,
int  ring,
int  station,
int  sector,
int  layer,
int  subsector,
int  roll 
)

Construct from fully qualified identifier.

Definition at line 30 of file RPCDetId.cc.

References init(), layer(), ring(), roll(), sector(), station(), and subsector().

Member Function Documentation

◆ buildfromDB()

void RPCDetId::buildfromDB ( int  region,
int  ring,
int  layer,
int  sector,
const std::string &  subsector,
const std::string &  roll,
const std::string &  dbname 
)

Definition at line 35 of file RPCDetId.cc.

41  {
42  bool barrel = (region == 0);
43  //STATION
44  int station = -1;
45  if (barrel) {
46  if (trlayer == 1 || trlayer == 2)
47  station = 1;
48  else if (trlayer == 3 || trlayer == 4)
49  station = 2;
50  else
51  station = trlayer - 2;
52  } else {
53  station = abs(ring);
54  }
55 
56  //LAYER
57  //int layer = 1;
58  //if (barrel && station==1) layer = trlayer;
59  //if (barrel && station==2) layer = trlayer-2;
60 
61  //SUBSECTOR
62  int subsector = 1;
63 
64  if (barrel) {
65  if (station == 3 && subs == "+")
66  subsector = 2;
67  if (station == 4 &&
68  (sector == 1 || sector == 2 || sector == 3 || sector == 5 || sector == 6 || sector == 7 || sector == 8 ||
69  sector == 10 || sector == 12) &&
70  (subs == "+")) {
71  subsector = 2;
72  }
73 
74  if (station == 4 && sector == 4) {
75  if (subs == "--")
76  subsector = 1;
77  if (subs == "-")
78  subsector = 2;
79  if (subs == "+")
80  subsector = 3;
81  if (subs == "++")
82  subsector = 4;
83  }
84  }
85 
86  // ROLL
87  int iroll = 0;
88 
89  if (roll == "Backward" || roll == "A")
90  iroll = 1;
91  else if (roll == "Central" || roll == "B")
92  iroll = 2;
93  else if (roll == "Forward" || roll == "C")
94  iroll = 3;
95  else if (roll == "D")
96  iroll = 4;
97  else {
98  std::cout << "** RPC: DBSpecToDetUnit, how to assigne roll to: " << roll << " ???" << std::endl;
99  }
100 
101  int trIndex = 0;
102  if (barrel) {
103  //cout <<" BARREL: " << endl;
104  int eta_id = 6 + ring;
105  int plane_id = station;
106  if (trlayer == 2)
107  plane_id = 5;
108  if (trlayer == 4)
109  plane_id = 6;
110  int sector_id = sector * 3;
111  int copy_id = subsector;
112  int roll_id = iroll;
113  trIndex = (eta_id * 10000 + plane_id * 1000 + sector_id * 10 + copy_id) * 10 + roll_id;
114  } else {
115  // cout << "ENDCAP : " << endl;
116  int eta_id = trlayer;
117  if (ring > 0)
118  eta_id = 12 - trlayer;
119  int plane_id = abs(ring);
120  int sector_id = sector;
121 
122  if (region < 0) {
123  if (sector_id < 20) {
124  sector_id = 19 + 1 - sector_id;
125  } else {
126  sector_id = 36 + 20 - sector_id;
127  }
128  }
129  sector_id -= 1;
130 
131  //
132  int copy_id = 1;
133  int roll_id = iroll;
134  trIndex = (eta_id * 10000 + plane_id * 1000 + sector_id * 10 + copy_id) * 10 + roll_id;
135  }
136  this->buildfromTrIndex(trIndex);
137 }

References funct::abs(), Reference_intrackfit_cff::barrel, buildfromTrIndex(), gather_cfg::cout, region(), ring(), roll(), sector(), station(), subsector(), and trIndex().

Referenced by DBSpecToDetUnit::operator()().

◆ buildfromTrIndex()

void RPCDetId::buildfromTrIndex ( int  trIndex)

Built from the trigger det Index.

Definition at line 139 of file RPCDetId.cc.

139  {
140  trind = trIndex;
141  int eta_id = trIndex / 100000;
142  int region = 0;
143  int ring = 0;
144  if (eta_id <= 3) {
145  region = -1;
146  ring = eta_id;
147  } else if (eta_id >= 9) {
148  region = 1;
149  ring = 12 - eta_id;
150  } else {
151  region = 0;
152  ring = eta_id - 6;
153  }
154  trIndex = trIndex % 100000;
155  int plane_id = trIndex / 10000;
156  int station = 0;
157  int layer = 0;
158  if (plane_id <= 4) {
159  station = plane_id;
160  layer = 1;
161  } else {
162  station = plane_id - 4;
163  layer = 2;
164  }
165  trIndex = trIndex % 10000;
166  int sector_id = trIndex / 100;
167 
168  // RE+1/1 :: the chamber at x=0 (phi=0) start as CH02 instead of CH01, which is not desired
169  // while for other chambers: RE+1/(2,3) and RE+2,3,4/(2,3) the rotation seems to be arbitrary
170  // I will leave the code for the existing chambers as it is, but will remove RE+1/1 from selection
171  // These lines are programmed very asymmetric between Pos \& Neg endcap:
172  // - it affects the whole Negative Endcap
173  // - it affects the whole RE+/-1 Station
174  // - it affects all RE+(1,2,3,4)/(2,3)
175  // ==> why does it act differently on RE-(2,3,4)/1 and RE+(2,3,4)/1 ???
176  if (region != 0) {
177  if (!(ring == 1 && station > 1 && region == 1)) {
178  // skip RE+1/1 (ri=1, st=1, re=-1,+1)
179  if (!(ring == 1 && station == 1 && region != 0)) {
180  sector_id += 1;
181  if (sector_id == 37)
182  sector_id = 1;
183  }
184  }
185  }
186 
187  if (region == -1) {
188  if (sector_id < 20) {
189  sector_id = 19 + 1 - sector_id;
190  } else {
191  sector_id = 36 + 20 - sector_id;
192  }
193  }
194  trIndex = trIndex % 100;
195  int copy_id = trIndex / 10;
196  int sector = (sector_id - 1) / 3 + 1;
197  if (region != 0) {
198  sector = (sector + 1) / 2;
199  }
200  int subsector = 0;
201  if (region == 0) {
202  subsector = copy_id;
203  } else {
204  if (ring == 1 && station > 1) {
205  // 20 degree chambers
206  subsector = ((sector_id + 1) / 2 - 1) % 3 + 1;
207  } else {
208  // 10 degree chambers
209  subsector = (sector_id - 1) % 6 + 1;
210  }
211  // std::cout <<" RE"<<station*region<<"/"<<ring<<" sector_id "<<sector_id
212  // << " sector "<<sector <<" sub "<<subsector<<std::endl;
213  }
214 
215  int roll = trIndex % 10;
216  this->init(region, ring, station, sector, layer, subsector, roll);
217 }

References init(), layer(), region(), ring(), roll(), sector(), station(), subsector(), trind, and trIndex().

Referenced by buildfromDB().

◆ chamberId()

RPCDetId RPCDetId::chamberId ( ) const
inline

Return the corresponding ChamberId.

Definition at line 99 of file RPCDetId.h.

99 { return RPCDetId(id_ & chamberIdMask_); }

References chamberIdMask_, DetId::id_, and RPCDetId().

Referenced by RPCNeutronWriter::chamberId().

◆ init()

void RPCDetId::init ( int  region,
int  ring,
int  station,
int  sector,
int  layer,
int  subsector,
int  roll 
)
private

Definition at line 219 of file RPCDetId.cc.

219  {
220  int minRing = 0;
222  if (!region) {
225  }
226 
227  if (region < minRegionId || region > maxRegionId || ring < minRing || ring > maxRing || station < minStationId ||
228  station > maxStationId || sector < minSectorId || sector > maxSectorId || layer < minLayerId ||
229  layer > maxLayerId || subsector < minSubSectorId || subsector > maxSubSectorId || roll < minRollId ||
230  roll > maxRollId) {
231  throw cms::Exception("InvalidDetId") << "RPCDetId ctor:"
232  << " Invalid parameters: "
233  << " region " << region << " ring " << ring << " station " << station
234  << " sector " << sector << " layer " << layer << " subsector " << subsector
235  << " roll " << roll << std::endl;
236  }
237 
238  int regionInBits = region - minRegionId;
239  int ringInBits = 0;
240  if (region != 0)
241  ringInBits = ring - minRingForwardId;
242  if (!region)
243  ringInBits = ring + RingBarrelOffSet - minRingBarrelId;
244 
245  int stationInBits = station - minStationId;
246  int sectorInBits = sector - (minSectorId + 1);
247  int layerInBits = layer - minLayerId;
248  int subSectorInBits = subsector - (minSubSectorId + 1);
249  int rollInBits = roll;
250 
251  id_ |= (regionInBits & RegionMask_) << RegionStartBit_ | (ringInBits & RingMask_) << RingStartBit_ |
252  (stationInBits & StationMask_) << StationStartBit_ | (sectorInBits & SectorMask_) << SectorStartBit_ |
253  (layerInBits & LayerMask_) << LayerStartBit_ | (subSectorInBits & SubSectorMask_) << SubSectorStartBit_ |
254  (rollInBits & RollMask_) << RollStartBit_;
255 }

References Exception, DetId::id_, layer(), LayerMask_, LayerStartBit_, maxLayerId, maxRegionId, HLT_2018_cff::maxRing, maxRingBarrelId, maxRingForwardId, maxRollId, maxSectorId, maxStationId, maxSubSectorId, minLayerId, minRegionId, HLT_2018_cff::minRing, minRingBarrelId, minRingForwardId, minRollId, minSectorId, minStationId, minSubSectorId, region(), RegionMask_, RegionStartBit_, ring(), RingBarrelOffSet, RingMask_, RingStartBit_, roll(), RollMask_, RollStartBit_, sector(), SectorMask_, SectorStartBit_, station(), StationMask_, StationStartBit_, subsector(), SubSectorMask_, and SubSectorStartBit_.

Referenced by buildfromTrIndex(), and RPCDetId().

◆ layer()

int RPCDetId::layer ( ) const
inline

◆ operator<()

bool RPCDetId::operator< ( const RPCDetId r) const
inline

Sort Operator based on the raw detector id.

Definition at line 29 of file RPCDetId.h.

29  {
30  if (r.station() == this->station()) {
31  if (this->layer() == r.layer()) {
32  return this->rawId() < r.rawId();
33  } else {
34  return (this->layer() < r.layer());
35  }
36  } else {
37  return this->station() < r.station();
38  }
39  }

References layer(), alignCSCRings::r, DetId::rawId(), and station().

◆ region()

int RPCDetId::region ( ) const
inline

Region id: 0 for Barrel, +/-1 For +/- Endcap.

Definition at line 53 of file RPCDetId.h.

53 { return int((id_ >> RegionStartBit_) & RegionMask_) + minRegionId; }

References DetId::id_, createfilelist::int, minRegionId, RegionMask_, and RegionStartBit_.

Referenced by OMTFinputMaker::acceptDigi(), RPCGeomServ::aclockwise(), RPCDigiValid::analyze(), RPCRecHitValid::analyze(), L1MuonRecoTreeProducer::analyze(), RPCMonitorDigi::bookHistograms(), RPCMonitorDigi::bookRollME(), RPCGeometryBuilderFromCondDB::build(), buildfromDB(), buildfromTrIndex(), RPCGeometryBuilderFromDDD::buildGeometry(), RPCStripsRing::calculateHwPlane(), RPCSimHitMatcher::chamberIds(), RPCGeomServ::chambername(), RPCGeomServ::channelInChip(), RPCSeedPattern::checkSegment(), RPCClusterSizeTest::clientOperation(), RPCDeadChannelTest::clientOperation(), RPCRecHitStandardAlgo::compute(), PrimitiveConversion::convert_rpc(), CSCObjectMap::CSCObjectMap(), rpcdqm::utils::detId2ChamberLabel(), rpcdqm::utils::detId2ChamberNr(), rpcdqm::utils::detId2RollNr(), RPCSimHitMatcher::detIds(), DTObjectMap::DTObjectMap(), RPCGeomServ::eta_partition(), EMTFSubsystemCollector::extractPrimitives(), RPCNoisyStripTest::fillGlobalME(), RPCMultiplicityTest::fillGlobalME(), RPCOccupancyTest::fillGlobalME(), GlobalDigisAnalyzer::fillMuon(), RPCRecHitFilter::filter(), RPCNoise::filter(), RPCBookFolderStructure::folderStructure(), OMTFConfiguration::getLayerNumber(), DetIdInfo::info(), fireworks::info(), init(), RPCCosmicSeedrecHitFinder::iscorssEdge(), HSCPValidator::makeSimDigiPlotsRPC(), RPCGeomServ::name(), RPCMonitorDigi::performSourceOperation(), RPCIntegrator::prepareMetaPrimitives(), RecHitProcessor::process(), RecHitProcessor::processLook(), RPCDigiMerger::produce(), ring(), RPCStripsRing::RPCStripsRing(), RPCHitCleaner::run(), RPCtoDTTranslator::run(), PrimitiveSelection::select_rpc(), RPCGeomServ::shortname(), RPCSimSimple::simulateNoise(), RPCSimParam::simulateNoise(), RPCSimAverage::simulateNoise(), RPCSimAverageNoise::simulateNoise(), RPCSimModelTiming::simulateNoise(), RPCSimAverageNoiseEffCls::simulateNoise(), RPCSimAverageNoiseEff::simulateNoise(), RPCSimAsymmetricCls::simulateNoise(), TracktoRPC::TracktoRPC(), ValidateGeometry::validateRPCGeometry(), and RPCGeomServ::zpositive().

◆ ring()

int RPCDetId::ring ( ) const
inline

Ring id: Wheel number in Barrel (from -2 to +2) Ring Number in Endcap (from 1 to 3) Ring has a different meaning in Barrel and Endcap! In Barrel it is wheel, in Endcap it is the physical ring located on a disk (a disk contains three rings). In Endcap the ring is the group of chambers with same r (distance of beam axis) and increasing phi

Definition at line 59 of file RPCDetId.h.

59  {
60  int ring_ = (id_ >> RingStartBit_) & RingMask_;
61 
62  if (ring_ < RingBarrelOffSet) {
63  if (this->region() == 0) {
64  throw cms::Exception("InvalidDetId") << "RPCDetId ctor:"
65  << " Ring - Region Inconsistency, "
66  << " region " << this->region() << " ring " << ring_ << std::endl;
67  }
68 
69  return int(ring_ + minRingForwardId);
70 
71  } else { // if(ring_ >= RingBarrelOffSet)
73  }
74  }

References Exception, DetId::id_, createfilelist::int, minRingBarrelId, minRingForwardId, region(), sistrip::ring_, RingBarrelOffSet, RingMask_, and RingStartBit_.

Referenced by OMTFinputMaker::acceptDigi(), RPCGeomServ::aclockwise(), RPCDigiValid::analyze(), L1MuonRecoTreeProducer::analyze(), RPCMonitorDigi::bookHistograms(), RPCMonitorDigi::bookRollME(), RPCGeometryBuilderFromCondDB::build(), buildfromDB(), buildfromTrIndex(), RPCGeometryBuilderFromDDD::buildGeometry(), RPCSimHitMatcher::chamberIds(), RPCGeomServ::chambername(), RPCClusterSizeTest::clientOperation(), RPCDeadChannelTest::clientOperation(), PrimitiveConversion::convert_rpc(), RPCIntegrator::createL1Phase2MuDTPhDigi(), CSCObjectMap::CSCObjectMap(), CSCSegtoRPC::CSCSegtoRPC(), rpcdqm::utils::detId2RollNr(), RPCSimHitMatcher::detIds(), DTObjectMap::DTObjectMap(), RPCGeomServ::eta_partition(), EMTFSubsystemCollector::extractPrimitives(), RPCNoisyStripTest::fillGlobalME(), RPCMultiplicityTest::fillGlobalME(), RPCOccupancyTest::fillGlobalME(), GlobalDigisAnalyzer::fillMuon(), RPCRecHitFilter::filter(), RPCBookFolderStructure::folderStructure(), geometryXMLparser.CSCAlignable::index(), DetIdInfo::info(), fireworks::info(), init(), MuonRPCDetLayerGeometryBuilder::isFront(), RPCIntegrator::makeRPCOnlySegments(), RPCIntegrator::matchDTwithRPC(), RPCGeomServ::name(), RBCProcessRPCDigis::next(), RBCProcessRPCSimDigis::next(), RPCMonitorDigi::performSourceOperation(), RPCIntegrator::phiBending(), PrimitiveSelection::process(), RPCDigiMerger::produce(), RPCDetId(), RPCStripsRing::RPCStripsRing(), IOPrinter::run(), RPCtoDTTranslator::run(), RPCGeomServ::segment(), PrimitiveSelection::select_rpc(), RPCGeomServ::shortname(), TracktoRPC::TracktoRPC(), and RPCGeomServ::zpositive().

◆ roll()

int RPCDetId::roll ( ) const
inline

◆ sector()

int RPCDetId::sector ( ) const
inline

Sector id: the group of chambers at same phi (and increasing r)

Definition at line 81 of file RPCDetId.h.

81 { return int((id_ >> SectorStartBit_) & SectorMask_) + (minSectorId + 1); }

References DetId::id_, createfilelist::int, minSectorId, SectorMask_, and SectorStartBit_.

Referenced by OMTFinputMaker::acceptDigi(), RPCGeomServ::aclockwise(), L1MuonRecoTreeProducer::analyze(), RPCGeometryBuilderFromCondDB::build(), buildfromDB(), buildfromTrIndex(), RPCGeometryBuilderFromDDD::buildGeometry(), MuonHitHelper::chamber(), RPCGeomServ::chambername(), RPCGeomServ::chambernr(), RPCGeomServ::channelInChip(), RPCClusterSizeTest::clientOperation(), RPCDeadChannelTest::clientOperation(), PrimitiveConversion::convert_rpc(), RPCIntegrator::createL1Phase2MuDTPhDigi(), rpcdqm::utils::detId2ChamberLabel(), rpcdqm::utils::detId2ChamberNr(), rpcdqm::utils::detId2RollNr(), DTObjectMap::DTObjectMap(), RPCNoisyStripTest::fillGlobalME(), RPCMultiplicityTest::fillGlobalME(), RPCOccupancyTest::fillGlobalME(), RPCRecHitFilter::filter(), RPCBookFolderStructure::folderStructure(), geometryXMLparser.DTAlignable::index(), DetIdInfo::info(), fireworks::info(), init(), MuonRPCDetLayerGeometryBuilder::isFront(), RPCIntegrator::makeRPCOnlySegments(), RPCIntegrator::matchDTwithRPC(), RPCGeomServ::name(), RBCProcessRPCDigis::next(), RBCProcessRPCSimDigis::next(), RPCMonitorDigi::performSourceOperation(), RPCIntegrator::phiBending(), RPCDetId(), IOPrinter::run(), RPCtoDTTranslator::run(), RPCGeomServ::segment(), PrimitiveSelection::select_rpc(), RPCGeomServ::shortname(), TracktoRPC::TracktoRPC(), and RPCGeomServ::zpositive().

◆ station()

int RPCDetId::station ( ) const
inline

Station id : For Barrel: the four groups of chambers at same r (distance from beam axis) and increasing phi For Endcap: the three groups of chambers at same z (distance from interaction point), i.e. the disk

Definition at line 78 of file RPCDetId.h.

78 { return int((id_ >> StationStartBit_) & StationMask_) + minStationId; }

References DetId::id_, createfilelist::int, minStationId, StationMask_, and StationStartBit_.

Referenced by OMTFinputMaker::acceptDigi(), RPCDigiValid::analyze(), L1MuonRecoTreeProducer::analyze(), RPCChamberMasker::beginRun(), RPCMonitorDigi::bookHistograms(), RPCMonitorDigi::bookRollME(), RPCGeometryBuilderFromCondDB::build(), buildfromDB(), buildfromTrIndex(), RPCGeometryBuilderFromDDD::buildGeometry(), reco::helper::JetMuonHitsIDHelper::calculate(), RPCStripsRing::calculateHwPlane(), RPCSimHitMatcher::chamberIds(), RPCGeomServ::chambername(), RPCGeomServ::chambernr(), RPCGeomServ::channelInChip(), RPCSeedPattern::checkSegment(), RPCClusterSizeTest::clientOperation(), RPCDeadChannelTest::clientOperation(), PrimitiveConversion::convert_rpc(), RPCIntegrator::createL1Phase2MuDTPhDigi(), CSCObjectMap::CSCObjectMap(), CSCSegtoRPC::CSCSegtoRPC(), rpcdqm::utils::detId2ChamberLabel(), rpcdqm::utils::detId2ChamberNr(), rpcdqm::utils::detId2RollNr(), RPCSimHitMatcher::detIds(), DTObjectMap::DTObjectMap(), EMTFSubsystemCollector::extractPrimitives(), RPCNoisyStripTest::fillGlobalME(), RPCMultiplicityTest::fillGlobalME(), RPCOccupancyTest::fillGlobalME(), RPCRecHitFilter::filter(), RPCBookFolderStructure::folderStructure(), GlobalMuonRefitter::getFirstHits(), OMTFConfiguration::getLayerNumber(), GlobalMuonRefitter::getRidOfSelectStationHits(), geometryXMLparser.DTAlignable::index(), geometryXMLparser.CSCAlignable::index(), DetIdInfo::info(), fireworks::info(), init(), MuonRPCDetLayerGeometryBuilder::isFront(), RPCIntegrator::makeRPCOnlySegments(), HSCPValidator::makeSimDigiPlotsRPC(), RPCIntegrator::matchDTwithRPC(), TrackTransformerForGlobalCosmicMuons::MuonKeep(), RPCGeomServ::name(), RBCProcessRPCDigis::next(), RBCProcessRPCSimDigis::next(), operator<(), RPCMonitorDigi::performSourceOperation(), RPCIntegrator::phiBending(), PrimitiveSelection::process(), RPCDigiMerger::produce(), RPCDetId(), IOPrinter::run(), RPCtoDTTranslator::run(), RPCGeomServ::segment(), PrimitiveSelection::select_rpc(), RPCGeomServ::shortname(), TAMuonChamberMatch::station(), reco::MuonChamberMatch::station(), and TracktoRPC::TracktoRPC().

◆ subsector()

int RPCDetId::subsector ( ) const
inline

◆ trIndex()

int RPCDetId::trIndex ( ) const
inline

Definition at line 96 of file RPCDetId.h.

96 { return trind; }

References trind.

Referenced by buildfromDB(), and buildfromTrIndex().

Member Data Documentation

◆ chamberIdMask_

const uint32_t RPCDetId::chamberIdMask_ = ~(RollMask_ << RollStartBit_)
staticprivate

Definition at line 164 of file RPCDetId.h.

Referenced by chamberId().

◆ LayerMask_

const unsigned int RPCDetId::LayerMask_ = 0X1
staticprivate

Definition at line 154 of file RPCDetId.h.

Referenced by init(), and layer().

◆ LayerNumBits_

const int RPCDetId::LayerNumBits_ = 1
staticprivate

Definition at line 152 of file RPCDetId.h.

◆ LayerStartBit_

const int RPCDetId::LayerStartBit_ = SectorStartBit_ + SectorNumBits_
staticprivate

Definition at line 153 of file RPCDetId.h.

Referenced by init(), and layer().

◆ maxLayerId

const int RPCDetId::maxLayerId = 2
static

◆ maxRegionId

const int RPCDetId::maxRegionId = 1
static

Definition at line 102 of file RPCDetId.h.

Referenced by init().

◆ maxRingBarrelId

const int RPCDetId::maxRingBarrelId = 2
static

Definition at line 107 of file RPCDetId.h.

Referenced by MuonRPCDetLayerGeometryBuilder::buildBarrelLayers(), and init().

◆ maxRingForwardId

const int RPCDetId::maxRingForwardId = 3
static

Definition at line 105 of file RPCDetId.h.

Referenced by MuonRPCDetLayerGeometryBuilder::buildEndcapLayers(), and init().

◆ maxRollId

const int RPCDetId::maxRollId = 5
static

◆ maxSectorBarrelId

const int RPCDetId::maxSectorBarrelId = 12
static

Definition at line 116 of file RPCDetId.h.

◆ maxSectorForwardId

const int RPCDetId::maxSectorForwardId = 6
static

Definition at line 118 of file RPCDetId.h.

Referenced by MuonRPCDetLayerGeometryBuilder::buildLayer().

◆ maxSectorId

const int RPCDetId::maxSectorId = 12
static

Definition at line 114 of file RPCDetId.h.

Referenced by MuonRPCDetLayerGeometryBuilder::buildBarrelLayers(), and init().

◆ maxStationId

const int RPCDetId::maxStationId = 4
static

◆ maxSubSectorBarrelId

const int RPCDetId::maxSubSectorBarrelId = 4
static

Definition at line 126 of file RPCDetId.h.

◆ maxSubSectorForwardId

const int RPCDetId::maxSubSectorForwardId = 6
static

Definition at line 128 of file RPCDetId.h.

◆ maxSubSectorId

const int RPCDetId::maxSubSectorId = 6
static

Definition at line 124 of file RPCDetId.h.

Referenced by MuonRPCDetLayerGeometryBuilder::buildBarrelLayers(), and init().

◆ minLayerId

const int RPCDetId::minLayerId = 1
static

◆ minRegionId

const int RPCDetId::minRegionId = -1
static

Definition at line 101 of file RPCDetId.h.

Referenced by init(), and region().

◆ minRingBarrelId

const int RPCDetId::minRingBarrelId = -2
static

Definition at line 106 of file RPCDetId.h.

Referenced by MuonRPCDetLayerGeometryBuilder::buildBarrelLayers(), init(), and ring().

◆ minRingForwardId

const int RPCDetId::minRingForwardId = 1
static

Definition at line 104 of file RPCDetId.h.

Referenced by MuonRPCDetLayerGeometryBuilder::buildEndcapLayers(), init(), and ring().

◆ minRollId

const int RPCDetId::minRollId = 0
static

◆ minSectorBarrelId

const int RPCDetId::minSectorBarrelId = 1
static

Definition at line 115 of file RPCDetId.h.

◆ minSectorForwardId

const int RPCDetId::minSectorForwardId = 1
static

Definition at line 117 of file RPCDetId.h.

Referenced by MuonRPCDetLayerGeometryBuilder::buildLayer().

◆ minSectorId

const int RPCDetId::minSectorId = 0
static

Definition at line 113 of file RPCDetId.h.

Referenced by MuonRPCDetLayerGeometryBuilder::buildBarrelLayers(), init(), and sector().

◆ minStationId

const int RPCDetId::minStationId = 1
static

Definition at line 110 of file RPCDetId.h.

Referenced by MuonRPCDetLayerGeometryBuilder::buildBarrelLayers(), init(), and station().

◆ minSubSectorBarrelId

const int RPCDetId::minSubSectorBarrelId = 1
static

Definition at line 125 of file RPCDetId.h.

◆ minSubSectorForwardId

const int RPCDetId::minSubSectorForwardId = 1
static

Definition at line 127 of file RPCDetId.h.

Referenced by MuonRPCDetLayerGeometryBuilder::buildLayer().

◆ minSubSectorId

const int RPCDetId::minSubSectorId = 0
static

Definition at line 123 of file RPCDetId.h.

Referenced by MuonRPCDetLayerGeometryBuilder::buildBarrelLayers(), init(), and subsector().

◆ RegionMask_

const int RPCDetId::RegionMask_ = 0X3
staticprivate

Definition at line 138 of file RPCDetId.h.

Referenced by init(), and region().

◆ RegionNumBits_

const int RPCDetId::RegionNumBits_ = 2
staticprivate

Definition at line 136 of file RPCDetId.h.

◆ RegionStartBit_

const int RPCDetId::RegionStartBit_ = 0
staticprivate

Definition at line 137 of file RPCDetId.h.

Referenced by init(), and region().

◆ RingBarrelOffSet

const int RPCDetId::RingBarrelOffSet = 3
static

Definition at line 108 of file RPCDetId.h.

Referenced by init(), and ring().

◆ RingMask_

const unsigned int RPCDetId::RingMask_ = 0X7
staticprivate

Definition at line 142 of file RPCDetId.h.

Referenced by init(), and ring().

◆ RingNumBits_

const int RPCDetId::RingNumBits_ = 3
staticprivate

Definition at line 140 of file RPCDetId.h.

◆ RingStartBit_

const int RPCDetId::RingStartBit_ = RegionStartBit_ + RegionNumBits_
staticprivate

Definition at line 141 of file RPCDetId.h.

Referenced by init(), and ring().

◆ RollMask_

const unsigned int RPCDetId::RollMask_ = 0X7
staticprivate

Definition at line 162 of file RPCDetId.h.

Referenced by init(), and roll().

◆ RollNumBits_

const int RPCDetId::RollNumBits_ = 3
staticprivate

Definition at line 160 of file RPCDetId.h.

◆ RollStartBit_

const int RPCDetId::RollStartBit_ = SubSectorStartBit_ + SubSectorNumBits_
staticprivate

Definition at line 161 of file RPCDetId.h.

Referenced by init(), and roll().

◆ SectorMask_

const unsigned int RPCDetId::SectorMask_ = 0XF
staticprivate

Definition at line 150 of file RPCDetId.h.

Referenced by init(), and sector().

◆ SectorNumBits_

const int RPCDetId::SectorNumBits_ = 4
staticprivate

Definition at line 148 of file RPCDetId.h.

◆ SectorStartBit_

const int RPCDetId::SectorStartBit_ = StationStartBit_ + StationNumBits_
staticprivate

Definition at line 149 of file RPCDetId.h.

Referenced by init(), and sector().

◆ StationMask_

const unsigned int RPCDetId::StationMask_ = 0X3
staticprivate

Definition at line 146 of file RPCDetId.h.

Referenced by init(), and station().

◆ StationNumBits_

const int RPCDetId::StationNumBits_ = 2
staticprivate

Definition at line 144 of file RPCDetId.h.

◆ StationStartBit_

const int RPCDetId::StationStartBit_ = RingStartBit_ + RingNumBits_
staticprivate

Definition at line 145 of file RPCDetId.h.

Referenced by init(), and station().

◆ SubSectorMask_

const unsigned int RPCDetId::SubSectorMask_ = 0X7
staticprivate

Definition at line 158 of file RPCDetId.h.

Referenced by init(), and subsector().

◆ SubSectorNumBits_

const int RPCDetId::SubSectorNumBits_ = 3
staticprivate

Definition at line 156 of file RPCDetId.h.

◆ SubSectorStartBit_

const int RPCDetId::SubSectorStartBit_ = LayerStartBit_ + LayerNumBits_
staticprivate

Definition at line 157 of file RPCDetId.h.

Referenced by init(), and subsector().

◆ trind

int RPCDetId::trind
private

Definition at line 169 of file RPCDetId.h.

Referenced by buildfromTrIndex(), and trIndex().

Reference_intrackfit_cff.barrel
list barrel
Definition: Reference_intrackfit_cff.py:37
RPCDetId::station
int station() const
Definition: RPCDetId.h:78
RPCDetId::region
int region() const
Region id: 0 for Barrel, +/-1 For +/- Endcap.
Definition: RPCDetId.h:53
RPCDetId::subsector
int subsector() const
SubSector id : some sectors are divided along the phi direction in subsectors (from 1 to 4 in Barrel,...
Definition: RPCDetId.h:88
DetId::det
constexpr Detector det() const
get the detector field from this detid
Definition: DetId.h:46
RPCDetId::RingMask_
static const unsigned int RingMask_
Definition: RPCDetId.h:142
gather_cfg.cout
cout
Definition: gather_cfg.py:144
RPCDetId::minRingBarrelId
static const int minRingBarrelId
Definition: RPCDetId.h:106
RPCDetId::minRollId
static const int minRollId
Definition: RPCDetId.h:130
RPCDetId::RingBarrelOffSet
static const int RingBarrelOffSet
Definition: RPCDetId.h:108
RPCDetId::maxRollId
static const int maxRollId
Definition: RPCDetId.h:131
HLT_2018_cff.minRing
minRing
Definition: HLT_2018_cff.py:44933
RPCDetId::maxRegionId
static const int maxRegionId
Definition: RPCDetId.h:102
RPCDetId::RollMask_
static const unsigned int RollMask_
Definition: RPCDetId.h:162
RPCDetId::maxSubSectorId
static const int maxSubSectorId
Definition: RPCDetId.h:124
RPCDetId::minLayerId
static const int minLayerId
Definition: RPCDetId.h:120
sistrip::ring_
static const char ring_[]
Definition: ConstantsForGranularity.h:35
RPCDetId::minSubSectorId
static const int minSubSectorId
Definition: RPCDetId.h:123
RPCDetId::minSectorId
static const int minSectorId
Definition: RPCDetId.h:113
DetId::subdetId
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector's numbering enum)
Definition: DetId.h:48
RPCDetId::SubSectorStartBit_
static const int SubSectorStartBit_
Definition: RPCDetId.h:157
RPCDetId::buildfromTrIndex
void buildfromTrIndex(int trIndex)
Built from the trigger det Index.
Definition: RPCDetId.cc:139
RPCDetId::minRingForwardId
static const int minRingForwardId
Definition: RPCDetId.h:104
RPCDetId::maxRingBarrelId
static const int maxRingBarrelId
Definition: RPCDetId.h:107
RPCDetId::roll
int roll() const
Definition: RPCDetId.h:92
RPCDetId::SubSectorMask_
static const unsigned int SubSectorMask_
Definition: RPCDetId.h:158
DetId::id_
uint32_t id_
Definition: DetId.h:69
RPCDetId::minStationId
static const int minStationId
Definition: RPCDetId.h:110
createfilelist.int
int
Definition: createfilelist.py:10
RPCDetId::LayerStartBit_
static const int LayerStartBit_
Definition: RPCDetId.h:153
RPCDetId::init
void init(int region, int ring, int station, int sector, int layer, int subsector, int roll)
Definition: RPCDetId.cc:219
RPCDetId::StationStartBit_
static const int StationStartBit_
Definition: RPCDetId.h:145
RPCDetId::SectorMask_
static const unsigned int SectorMask_
Definition: RPCDetId.h:150
RPCDetId::RingStartBit_
static const int RingStartBit_
Definition: RPCDetId.h:141
RPCDetId::StationMask_
static const unsigned int StationMask_
Definition: RPCDetId.h:146
RPCDetId::LayerMask_
static const unsigned int LayerMask_
Definition: RPCDetId.h:154
RPCDetId::trIndex
int trIndex() const
Definition: RPCDetId.h:96
RPCDetId::ring
int ring() const
Definition: RPCDetId.h:59
alignCSCRings.r
r
Definition: alignCSCRings.py:93
RPCDetId::maxRingForwardId
static const int maxRingForwardId
Definition: RPCDetId.h:105
RPCDetId::SectorStartBit_
static const int SectorStartBit_
Definition: RPCDetId.h:149
RPCDetId::chamberIdMask_
static const uint32_t chamberIdMask_
Definition: RPCDetId.h:164
HLT_2018_cff.maxRing
maxRing
Definition: HLT_2018_cff.py:44936
DetId::rawId
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
RPCDetId::minRegionId
static const int minRegionId
Definition: RPCDetId.h:101
MuonSubdetId::RPC
static constexpr int RPC
Definition: MuonSubdetId.h:13
RPCDetId::RPCDetId
RPCDetId()
Definition: RPCDetId.cc:13
Exception
Definition: hltDiff.cc:246
RPCDetId::sector
int sector() const
Sector id: the group of chambers at same phi (and increasing r)
Definition: RPCDetId.h:81
DetId::DetId
constexpr DetId()
Create an empty or null id (also for persistence)
Definition: DetId.h:38
RPCDetId::RegionStartBit_
static const int RegionStartBit_
Definition: RPCDetId.h:137
DetId::Muon
Definition: DetId.h:26
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
RPCDetId::RollStartBit_
static const int RollStartBit_
Definition: RPCDetId.h:161
RPCDetId::maxStationId
static const int maxStationId
Definition: RPCDetId.h:111
RPCDetId::RegionMask_
static const int RegionMask_
Definition: RPCDetId.h:138
RPCDetId::maxLayerId
static const int maxLayerId
Definition: RPCDetId.h:121
RPCDetId::layer
int layer() const
Definition: RPCDetId.h:85
RPCDetId::trind
int trind
Definition: RPCDetId.h:169
RPCDetId::maxSectorId
static const int maxSectorId
Definition: RPCDetId.h:114