CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Static Public Member Functions | Private Types | Static Private Member Functions
CSCDetId Class Reference

#include <CSCDetId.h>

Inheritance diagram for CSCDetId:
DetId

Public Member Functions

int chamber () const
 
CSCDetId chamberId () const
 
int channel (int istrip)
 
 CSCDetId ()
 
 CSCDetId (uint32_t id)
 
 CSCDetId (DetId id)
 
 CSCDetId (int iendcap, int istation, int iring, int ichamber, int ilayer=0)
 
 CSCDetId (const CSCDetId &id)
 
int endcap () const
 
unsigned short iChamberType ()
 
int layer () const
 
int ring () const
 
int station () const
 
int triggerCscId () const
 
int triggerSector () const
 
short int zendcap () const
 
- Public Member Functions inherited from DetId
Detector det () const
 get the detector field from this detid More...
 
 DetId ()
 Create an empty or null id (also for persistence) More...
 
 DetId (uint32_t id)
 Create an id from a raw number. More...
 
 DetId (Detector det, int subdet)
 Create an id, filling the detector and subdetector fields as specified. More...
 
bool null () const
 is this a null id ? More...
 
 operator uint32_t () const
 
bool operator!= (DetId id) const
 inequality More...
 
uint32_t operator() () const
 
bool operator< (DetId id) const
 comparison More...
 
bool operator== (DetId id) const
 equality More...
 
uint32_t rawId () const
 get the raw id More...
 
int subdetId () const
 get the contents of the subdetector field (not cast into any detector's numbering enum) More...
 

Static Public Member Functions

static int chamber (int index)
 
static int endcap (int index)
 
static unsigned short iChamberType (unsigned short istation, unsigned short iring)
 
static int layer (int index)
 
static int maxChamberId ()
 
static int maxEndcapId ()
 
static int maxLayerId ()
 
static int maxRingId ()
 
static int maxStationId ()
 
static int minChamberId ()
 
static int minEndcapId ()
 
static int minLayerId ()
 
static int minRingId ()
 
static int minStationId ()
 
static int rawIdMaker (int iendcap, int istation, int iring, int ichamber, int ilayer)
 
static int ring (int index)
 
static int station (int index)
 

Private Types

enum  eMaskBitDet {
  MASK_ENDCAP =07, MASK_STATION =07, MASK_RING =07, MASK_CHAMBER =077,
  MASK_LAYER =07
}
 
enum  eMaxNum {
  MAX_ENDCAP =2, MAX_STATION =4, MAX_RING =4, MAX_CHAMBER =36,
  MAX_LAYER =6
}
 
enum  eMinNum {
  MIN_ENDCAP =1, MIN_STATION =1, MIN_RING =1, MIN_CHAMBER =1,
  MIN_LAYER =1
}
 
enum  eNumBitDet {
  BITS_ENDCAP =3, BITS_STATION =3, BITS_RING =3, BITS_CHAMBER =6,
  BITS_LAYER =3
}
 
enum  eStartBitDet { START_CHAMBER =BITS_LAYER, START_RING =START_CHAMBER+BITS_CHAMBER, START_STATION =START_RING+BITS_RING, START_ENDCAP =START_STATION+BITS_STATION }
 

Static Private Member Functions

static int detIdToInt (int iring)
 
static uint32_t init (int iendcap, int istation, int iring, int ichamber, int ilayer)
 
static int intToDetId (int iring)
 

Additional Inherited Members

- Public Types inherited from DetId
enum  Detector {
  Tracker =1, Muon =2, Ecal =3, Hcal =4,
  Calo =5
}
 
- Static Public Attributes inherited from DetId
static const int kDetOffset = 28
 
static const int kSubdetOffset = 25
 
- Protected Attributes inherited from DetId
uint32_t id_
 

Detailed Description

Identifier class for hierarchy of Endcap Muon detector components.

Ported from MuEndDetectorId but now derived from DetId and updated accordingly.

Allows access to hardware integer labels of the subcomponents of the Muon Endcap CSC detector system.

The STATIC member functions can be used to translate back and forth between a layer/chamber 'rawId' and the set of subdetector labels.

Warning
EVERY LABEL COUNTS FROM ONE NOT ZERO.

Definition at line 27 of file CSCDetId.h.

Member Enumeration Documentation

enum CSCDetId::eMaskBitDet
private
Enumerator
MASK_ENDCAP 
MASK_STATION 
MASK_RING 
MASK_CHAMBER 
MASK_LAYER 

Definition at line 308 of file CSCDetId.h.

enum CSCDetId::eMaxNum
private
Enumerator
MAX_ENDCAP 
MAX_STATION 
MAX_RING 
MAX_CHAMBER 
MAX_LAYER 

Definition at line 299 of file CSCDetId.h.

enum CSCDetId::eMinNum
private
Enumerator
MIN_ENDCAP 
MIN_STATION 
MIN_RING 
MIN_CHAMBER 
MIN_LAYER 

Definition at line 301 of file CSCDetId.h.

enum CSCDetId::eNumBitDet
private
Enumerator
BITS_ENDCAP 
BITS_STATION 
BITS_RING 
BITS_CHAMBER 
BITS_LAYER 

Definition at line 305 of file CSCDetId.h.

enum CSCDetId::eStartBitDet
private

Constructor & Destructor Documentation

CSCDetId::CSCDetId ( )

Default constructor; fills the common part in the base and leaves 0 in all other fields

Definition at line 5 of file CSCDetId.cc.

Referenced by chamberId().

DetId()
Create an empty or null id (also for persistence)
Definition: DetId.h:28
static const int CSC
Definition: MuonSubdetId.h:15
CSCDetId::CSCDetId ( uint32_t  id)

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

Definition at line 8 of file CSCDetId.cc.

References MuonSubdetId::CSC, DetId::det(), edm::hlt::Exception, DetId::Muon, and DetId::subdetId().

8  :DetId(id) {
10  throw cms::Exception("InvalidDetId") << "CSCDetId ctor:"
11  << " det: " << det()
12  << " subdet: " << subdetId()
13  << " is not a valid CSC id";
14  }
15 }
DetId()
Create an empty or null id (also for persistence)
Definition: DetId.h:28
static const int CSC
Definition: MuonSubdetId.h:15
int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:39
Detector det() const
get the detector field from this detid
Definition: DetId.h:37
CSCDetId::CSCDetId ( DetId  id)

Definition at line 17 of file CSCDetId.cc.

References MuonSubdetId::CSC, DetId::det(), edm::hlt::Exception, DetId::Muon, and DetId::subdetId().

17  :DetId(id) {
19  throw cms::Exception("InvalidDetId") << "CSCDetId ctor:"
20  << " det: " << det()
21  << " subdet: " << subdetId()
22  << " is not a valid CSC id";
23  }
24 }
DetId()
Create an empty or null id (also for persistence)
Definition: DetId.h:28
static const int CSC
Definition: MuonSubdetId.h:15
int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:39
Detector det() const
get the detector field from this detid
Definition: DetId.h:37
CSCDetId::CSCDetId ( int  iendcap,
int  istation,
int  iring,
int  ichamber,
int  ilayer = 0 
)

Construct from fully qualified identifier. Input values are required to be within legal ranges, otherwise an exception is thrown.
iendcap: 1=forward (+Z), 2=backward(-Z)

Definition at line 26 of file CSCDetId.cc.

References edm::hlt::Exception, DetId::id_, init(), MAX_CHAMBER, MAX_ENDCAP, MAX_LAYER, MAX_RING, and MAX_STATION.

27  :
29 {
30  if (iendcap < 0 || iendcap > MAX_ENDCAP ||
31  istation < 0 || istation > MAX_STATION ||
32  iring < 0 || iring > MAX_RING ||
33  ichamber < 0 || ichamber > MAX_CHAMBER ||
34  ilayer < 0 || ilayer > MAX_LAYER ) {
35  throw cms::Exception("InvalidDetId") << "CSCDetId ctor:"
36  << " Invalid parameters: "
37  << " E:"<< iendcap
38  << " S:"<< istation
39  << " R:"<< iring
40  << " C:"<< ichamber
41  << " L:"<< ilayer
42  << std::endl;
43  }
44  id_ |= init(iendcap, istation, iring, ichamber, ilayer);
45 }
DetId()
Create an empty or null id (also for persistence)
Definition: DetId.h:28
static const int CSC
Definition: MuonSubdetId.h:15
static uint32_t init(int iendcap, int istation, int iring, int ichamber, int ilayer)
Definition: CSCDetId.h:255
uint32_t id_
Definition: DetId.h:57
CSCDetId::CSCDetId ( const CSCDetId id)
inline

Copy ctor.

Definition at line 50 of file CSCDetId.h.

51  : DetId(id.id_) { }
DetId()
Create an empty or null id (also for persistence)
Definition: DetId.h:28
uint32_t id_
Definition: DetId.h:57

Member Function Documentation

int CSCDetId::chamber ( ) const
inline

Return Chamber label.

Definition at line 70 of file CSCDetId.h.

References DetId::id_, MASK_CHAMBER, and START_CHAMBER.

Referenced by CSCPairResidualsConstraint::addTrack(), MuonAlignmentAnalyzer::analyze(), MuonAlignment::analyze(), MuonGeometrySanityCheck::analyze(), RPCEfficiency::analyze(), CSCGeometryParsFromDD::build(), CSCRecHitDBuilder::build(), CSCGeometryBuilder::buildChamber(), cscd2r::chamberID(), MuonAlignmentFromReference::chamberPrettyNameFromId(), CSCChamberFitter::CSCChamberFitter(), CSCSegtoRPC::CSCSegtoRPC(), CSCReadoutMapping::detId(), CSCDigitizer::doAction(), CSCOfflineMonitor::doBXMonitor(), CSCSkim::doCSCSkimming(), CSCOfflineMonitor::doEfficiencies(), CSCValidation::doEfficiencies(), CSCSkim::doMessyEventSkimming(), CSCOfflineMonitor::doOccupancies(), CSCValidation::doOccupancies(), CSCValidation::doRecHits(), CSCValidation::doTimeMonitoring(), CSCPairResidualsConstraint::dphidzFromTrack(), CSCEfficiency::fillRechitsSegments_info(), CSCEfficiency::fillSimhit_info(), MuonGeometryArrange::fillTree(), CSCValidation::findNonAssociatedRecHits(), MuonAlignmentFromReference::fitAndAlign(), cscdqm::EventProcessor::getCSCFromMap(), ChamberSegmentUtility::getCSCSegmentsInChamber(), TrackerMuonHitExtractor::getMuonHits(), HLTCSCOverlapFilter::hltFilter(), geometryXMLparser.CSCAlignable::index(), DetIdInfo::info(), TAMuonChamberMatch::info(), fireworks::info(), TrackerMuonHitExtractor::init(), cscdqm::Summary::isChamberStandby(), MuonSegmentMatcher::matchCSC(), MuonResidualsFromTrack::MuonResidualsFromTrack(), muon::overlap(), CSCChipSpeedCorrectionDBConditions::prefillDBChipSpeedCorrection(), MuonTrackProducer::produce(), SimHitShifter::produce(), CSCChamberFitter::radiusCorrection(), CSCOverlapsAlignmentAlgorithm::run(), AlignmentCSCOverlapSelector::select(), CSCPairResidualsConstraint::setZplane(), triggerCscId(), triggerSector(), and HLTMuon::validChambers().

70  {
71  return ( (id_>>START_CHAMBER) & MASK_CHAMBER ); }
uint32_t id_
Definition: DetId.h:57
static int CSCDetId::chamber ( int  index)
inlinestatic

Return Chamber label for supplied CSCDetId index.

Definition at line 163 of file CSCDetId.h.

References MASK_CHAMBER, and START_CHAMBER.

Referenced by geometryXMLparser.CSCAlignable::index().

CSCDetId CSCDetId::chamberId ( ) const
inline
int CSCDetId::channel ( int  istrip)
inline

Geometric channel no. from geometric strip no. - identical except for ME1a ganged strips

Note that 'Geometric' means increasing number corresponds to increasing local x coordinate.

Warning
There is no attempt here to handle cabling or readout questions. If you need that look at CondFormats/CSCObjects/CSCChannelTranslator.

Definition at line 120 of file CSCDetId.h.

References ring().

Referenced by CSCRecHit2D::sharesInput().

120  {
121  if ( ring()== 4 )
122  // strips 1-48 mapped to channels 1-16:
123  // 1+17+33->1, 2+18+34->2, .... 16+32+48->16
124  return 1 + (istrip-1)%16;
125  else
126  return istrip;
127  }
int ring() const
Definition: CSCDetId.h:77
static int CSCDetId::detIdToInt ( int  iring)
inlinestaticprivate

Definition at line 287 of file CSCDetId.h.

References i.

Referenced by ring().

287  {
288  // reverse intToDetId: change 1, 2, 3, 4 inside the DetId to 4, 1, 2, 3 for external use
289  // i.e. output ring # 1, 2, 3, 4 in ME1 means ME1b, ME12, ME13, ME1a as usual in the offline software.
290  int i = (iring-1);
291  if (i == 0)
292  i = 4;
293  return i;
294  }
int i
Definition: DBlmapReader.cc:9
int CSCDetId::endcap ( ) const
inline

Return Endcap label. 1=forward (+Z); 2=backward (-Z)

Definition at line 95 of file CSCDetId.h.

References DetId::id_, MASK_ENDCAP, and START_ENDCAP.

Referenced by CSCDigiToRaw::add(), CSCPairResidualsConstraint::addTrack(), CSCAFEBConnectAnalysis::analyze(), CSCAFEBThrAnalysis::analyze(), MuonAlignmentAnalyzer::analyze(), MuonAlignment::analyze(), MuonGeometrySanityCheck::analyze(), RPCEfficiency::analyze(), BeamHaloAnalyzer::analyze(), CSCGeometryParsFromDD::build(), CSCRecHitDBuilder::build(), CSCGeometryBuilder::buildChamber(), AlignableMuon::buildCSCEndcap(), CSCHaloAlgo::Calculate(), CSCPairResidualsConstraint::calculatePhi(), cscd2r::chamberID(), MuonAlignmentFromReference::chamberPrettyNameFromId(), CSCCLCTData::comparatorDigis(), CSCChamberFitter::CSCChamberFitter(), CSCSegtoRPC::CSCSegtoRPC(), CSCReadoutMapping::detId(), CSCCFEBData::digis(), CSCDigitizer::doAction(), CSCOfflineMonitor::doBXMonitor(), CSCSkim::doCertainChamberSelection(), CSCSkim::doCSCSkimming(), CSCSkim::doDTOverlap(), CSCOfflineMonitor::doEfficiencies(), CSCValidation::doEfficiencies(), CSCSkim::doHaloLike(), CSCSkim::doMessyEventSkimming(), CSCOfflineMonitor::doOccupancies(), CSCValidation::doOccupancies(), CSCSkim::doOverlapSkimming(), CSCOfflineMonitor::doRecHits(), CSCValidation::doRecHits(), CSCValidation::doSegments(), CSCValidation::doTimeMonitoring(), CSCPairResidualsConstraint::dphidzFromTrack(), csc::L1TrackId::endcap(), AlignmentMonitorMuonResiduals::event(), CSCEfficiency::fillRechitsSegments_info(), CSCEfficiency::fillSimhit_info(), CSCValidation::findNonAssociatedRecHits(), MuonAlignmentFromReference::fitAndAlign(), cscdqm::EventProcessor::getCSCFromMap(), TrackerMuonHitExtractor::getMuonHits(), HLTCSCOverlapFilter::hltFilter(), geometryXMLparser.CSCAlignable::index(), DetIdInfo::info(), TAMuonChamberMatch::info(), fireworks::info(), TrackerMuonHitExtractor::init(), cscdqm::Summary::isChamberStandby(), MuonSegmentMatcher::matchCSC(), MuonResidualsFromTrack::MuonResidualsFromTrack(), CSCDetIdSameDetLayerComparator::operator()(), muon::overlap(), CSCChipSpeedCorrectionDBConditions::prefillDBChipSpeedCorrection(), cscdqm::EventProcessor::processCSC(), MuonTrackProducer::produce(), MuonSimHitProducer::produce(), SimHitShifter::produce(), CSCChamberFitter::radiusCorrection(), CSCOverlapsAlignmentAlgorithm::run(), AlignmentCSCOverlapSelector::select(), AlignmentCSCBeamHaloSelector::select(), AlignmentCSCTrackSelector::select(), CSCPairResidualsConstraint::setZplane(), TracktoRPC::TracktoRPC(), ValidateGeometry::validateCSChamberGeometry(), ValidateGeometry::validateCSCLayerGeometry(), HLTMuon::validChambers(), and zendcap().

95  {
96  return ( (id_>>START_ENDCAP) & MASK_ENDCAP ); }
uint32_t id_
Definition: DetId.h:57
static int CSCDetId::endcap ( int  index)
inlinestatic

Return Endcap label for supplied CSCDetId index.

Definition at line 188 of file CSCDetId.h.

References MASK_ENDCAP, and START_ENDCAP.

Referenced by geometryXMLparser.CSCAlignable::index().

unsigned short CSCDetId::iChamberType ( )
inline

Chamber type (integer 1-10)

Definition at line 109 of file CSCDetId.h.

References ring(), and station().

Referenced by CSCALCTDigiValidation::analyze(), CSCCLCTDigiValidation::analyze(), CSCDigiToRaw::findEventData(), CSCMake2DRecHit::hitFromStripAndWire(), and CSCALCTHeader::selfTest().

109  {
110  return iChamberType( station(), ring() );
111  }
unsigned short iChamberType()
Definition: CSCDetId.h:109
int ring() const
Definition: CSCDetId.h:77
int station() const
Definition: CSCDetId.h:88
unsigned short CSCDetId::iChamberType ( unsigned short  istation,
unsigned short  iring 
)
static

Return a unique integer 1-10 for a station, ring pair: 1 for S = 1 and R=4 inner strip part of ME11 (ME1a) 2,3,4 = R+1 for S = 1 and R = 1,2,3 (ME11 means ME1b) 5-10 = 2*S+R for S = 2,3,4 and R = 1,2

Definition at line 100 of file CSCDetId.cc.

References i.

100  {
101  int i = 2 * istation + iring; // i=2S+R ok for S=2, 3, 4
102  if ( istation == 1 ) {
103  --i; // ring 1R -> i=1+R (2S+R-1=1+R for S=1)
104  if ( i > 4 ) i = 1; // But ring 1A (R=4) -> i=1
105  }
106  return i;
107 }
int i
Definition: DBlmapReader.cc:9
static uint32_t CSCDetId::init ( int  iendcap,
int  istation,
int  iring,
int  ichamber,
int  ilayer 
)
inlinestaticprivate

Method for initialization within ctors.

Definition at line 255 of file CSCDetId.h.

References intToDetId(), MASK_CHAMBER, MASK_ENDCAP, MASK_LAYER, MASK_RING, MASK_STATION, START_CHAMBER, START_ENDCAP, START_RING, and START_STATION.

Referenced by CSCDetId(), and rawIdMaker().

256  {
257 
258  if (istation == 1)
259  iring = intToDetId(iring);
260 
261  return
262  (ilayer & MASK_LAYER) |
263  ( (ichamber & MASK_CHAMBER) << START_CHAMBER ) |
264  ( (iring & MASK_RING) << START_RING ) |
265  ( (istation & MASK_STATION) << START_STATION ) |
266  ( (iendcap & MASK_ENDCAP) << START_ENDCAP ) ; }
static int intToDetId(int iring)
Definition: CSCDetId.h:278
static int CSCDetId::intToDetId ( int  iring)
inlinestaticprivate

Methods for reordering CSCDetId for ME1 detectors.

Internally the chambers are ordered (Station/Ring) as: ME1/a (1/1), ME1/b (1/2), ME1/2 (1/3), ME1/3 (1/4) i.e. they are labelled within the DetId as if ME1a, ME1b, ME12, ME13 are rings 1, 2, 3, 4. The offline software always considers rings 1, 2, 3, 4 as ME1b, ME12, ME13, ME1a so that at least ME12 and ME13 have ring numbers which match in hardware and software!

Definition at line 278 of file CSCDetId.h.

References i.

Referenced by init().

278  {
279  // change iring = 1, 2, 3, 4 input to 2, 3, 4, 1 for use inside the DetId
280  // i.e. ME1b, ME12, ME13, ME1a externally become stored internally in order ME1a, ME1b, ME12, ME13
281  int i = (iring+1)%4;
282  if (i == 0)
283  i = 4;
284  return i;
285  }
int i
Definition: DBlmapReader.cc:9
int CSCDetId::layer ( ) const
inline

Return Layer label.

Definition at line 63 of file CSCDetId.h.

References DetId::id_, and MASK_LAYER.

Referenced by CSCDigiToRaw::add(), CSCSegAlgoSK::areHitsCloseInGlobalPhi(), CSCSegAlgoTC::areHitsCloseInGlobalPhi(), CSCGeometryParsFromDD::build(), CSCRecHitDBuilder::build(), CSCGeometryBuilder::buildChamber(), CSCSegAlgoTC::buildSegments(), chamberId(), CSCCLCTData::comparatorDigis(), CSCSegAlgoST::correctTheCovX(), CSCSegAlgoHitPruning::derivativeMatrix(), CSCSegAlgoShowering::derivativeMatrix(), CSCSegAlgoTC::derivativeMatrix(), CSCSegAlgoST::derivativeMatrix(), CSCSegAlgoDF::derivativeMatrix(), CSCSegAlgoSK::derivativeMatrix(), CSCCFEBData::digis(), CSCDigitizer::doAction(), CSCSkim::doCSCSkimming(), CSCOfflineMonitor::doEfficiencies(), CSCValidation::doEfficiencies(), CSCSkim::doMessyEventSkimming(), CSCValidation::doRecHits(), CSCOfflineMonitor::doResolution(), CSCValidation::doResolution(), CSCSegAlgoHitPruning::fillChiSquared(), CSCSegAlgoST::fillChiSquared(), CSCSegAlgoSK::fillChiSquared(), CSCSegAlgoTC::fillChiSquared(), CSCEfficiency::fillRechitsSegments_info(), CSCEfficiency::fillSimhit_info(), CSCValidation::findNonAssociatedRecHits(), CSCSegAlgoHitPruning::fitSlopes(), CSCSegAlgoST::fitSlopes(), CSCSegAlgoSK::fitSlopes(), CSCSegAlgoTC::fitSlopes(), MuonChamberResidual::hitlayer(), geometryXMLparser.DTAlignable::index(), geometryXMLparser.CSCAlignable::index(), DetIdInfo::info(), TAMuonChamberMatch::info(), fireworks::info(), CSCSegAlgoShowering::isHitNearSegment(), CSCSegAlgoSK::isHitNearSegment(), CSCSegAlgoTC::isHitNearSegment(), CSCSegAlgoDF::isHitNearSegment(), CSCChamber::layer(), CSCDigitizer::layersMissing(), MuonResidualsFromTrack::MuonResidualsFromTrack(), MuonSimHitProducer::produce(), SimHitShifter::produce(), CSCSegAlgoShowering::pruneFromResidual(), CSCSegAlgoDF::pruneFromResidual(), CSCEventData::selfTest(), CSCSegAlgoShowering::showerSeg(), CSCSegAlgoTC::tryAddingHitsToSegment(), CSCSegAlgoShowering::updateParameters(), CSCSegAlgoSK::updateParameters(), CSCSegAlgoDF::updateParameters(), and CSCSegAlgoTC::updateParameters().

63  {
64  return (id_ & MASK_LAYER); }
uint32_t id_
Definition: DetId.h:57
static int CSCDetId::layer ( int  index)
inlinestatic

Return Layer label for supplied CSCDetId index.

Definition at line 156 of file CSCDetId.h.

References MASK_LAYER.

Referenced by geometryXMLparser.DTAlignable::index(), and geometryXMLparser.CSCAlignable::index().

156  {
157  return (index & MASK_LAYER); }
static int CSCDetId::maxChamberId ( )
inlinestatic
static int CSCDetId::maxEndcapId ( )
inlinestatic
static int CSCDetId::maxLayerId ( )
inlinestatic
static int CSCDetId::maxRingId ( )
inlinestatic
static int CSCDetId::maxStationId ( )
inlinestatic
static int CSCDetId::minChamberId ( )
inlinestatic
static int CSCDetId::minEndcapId ( )
inlinestatic
static int CSCDetId::minLayerId ( )
inlinestatic
static int CSCDetId::minRingId ( )
inlinestatic
static int CSCDetId::minStationId ( )
inlinestatic
static int CSCDetId::rawIdMaker ( int  iendcap,
int  istation,
int  iring,
int  ichamber,
int  ilayer 
)
inlinestatic

Returns the unique integer 'rawId' which labels each CSC layer.

The arguments are the integer labels for, respectively,
endcap, station, ring, chamber, layer.

Warning
The input int args are expected to be .ge. 1 and there is no sanity-checking for their upper limits.
The returned integers are not necessarily consecutive, i.e. there are gaps. This is to permit computational efficiency starting from the component ids.

Definition at line 146 of file CSCDetId.h.

References MuonSubdetId::CSC, init(), DetId::kDetOffset, DetId::kSubdetOffset, and DetId::Muon.

Referenced by CSCNumberingScheme::baseNumberToUnitNumber(), CSCReadoutMapping::findHardwareId(), CSCTriggerSimpleMapping::hwId(), CSCTriggerMapping::swId(), and CSCReadoutMapping::swId().

147  {
148  return ( (DetId::Muon&0xF)<<(DetId::kDetOffset) ) | // set Muon flag
149  ( (MuonSubdetId::CSC&0x7)<<(DetId::kSubdetOffset) ) | // set CSC flag
150  init(iendcap, istation, iring, ichamber, ilayer) ; } // set CSC id
static const int kSubdetOffset
Definition: DetId.h:23
static const int CSC
Definition: MuonSubdetId.h:15
static uint32_t init(int iendcap, int istation, int iring, int ichamber, int ilayer)
Definition: CSCDetId.h:255
static const int kDetOffset
Definition: DetId.h:22
int CSCDetId::ring ( ) const
inline

Return Ring label.

Definition at line 77 of file CSCDetId.h.

References detIdToInt(), DetId::id_, MASK_RING, MASK_STATION, START_RING, and START_STATION.

Referenced by CSCDigiToRaw::add(), CSCPairResidualsConstraint::addTrack(), MuonAlignmentAnalyzer::analyze(), MuonAlignment::analyze(), MuonGeometrySanityCheck::analyze(), RPCEfficiency::analyze(), CSCGeometryBuilder::build(), CSCGeometryParsFromDD::build(), FWCSCWireDigiProxyBuilder::build(), CSCRecHitDBuilder::build(), CSCGeometryBuilder::buildChamber(), AlignableMuon::buildCSCEndcap(), CSCPairResidualsConstraint::calculatePhi(), cscd2r::chamberID(), MuonAlignmentFromReference::chamberPrettyNameFromId(), channel(), CSCCLCTData::comparatorDigis(), CSCChamberFitter::CSCChamberFitter(), CSCSegtoRPC::CSCSegtoRPC(), CSCReadoutMapping::detId(), CSCCFEBData::digis(), CSCDigitizer::doAction(), CSCOfflineMonitor::doBXMonitor(), CSCSkim::doCSCSkimming(), CSCOfflineMonitor::doEfficiencies(), CSCValidation::doEfficiencies(), CSCSkim::doMessyEventSkimming(), CSCOfflineMonitor::doOccupancies(), CSCValidation::doOccupancies(), CSCValidation::doRecHits(), CSCOfflineMonitor::doResolution(), CSCValidation::doResolution(), CSCValidation::doTimeMonitoring(), CSCPairResidualsConstraint::dphidzFromTrack(), AlignmentMonitorMuonResiduals::event(), CSCConfigurableStripConditions::fetchNoisifier(), MuonIdProducer::fillArbitrationInfo(), MuonMesh::fillMesh(), CSCHitFromStripOnly::fillPulseHeights(), CSCEfficiency::fillRechitsSegments_info(), CSCEfficiency::fillSimhit_info(), CSCValidation::findNonAssociatedRecHits(), MuonAlignmentFromReference::fitAndAlign(), CSCConfigurableStripConditions::gain(), CSCDriftSim::gasGain(), cscdqm::EventProcessor::getCSCFromMap(), TrackerMuonHitExtractor::getMuonHits(), CSCValidation::getthisSignal(), CSCValidation::getWidth(), HLTCSCOverlapFilter::hltFilter(), iChamberType(), geometryXMLparser.CSCAlignable::index(), DetIdInfo::info(), TAMuonChamberMatch::info(), fireworks::info(), TrackerMuonHitExtractor::init(), cscdqm::Summary::isChamberStandby(), CSCPairResidualsConstraint::isFiducial(), MuonSeedOrcaPatternRecognition::markAsUsed(), MuonSegmentMatcher::matchCSC(), MuonResidualsFromTrack::MuonResidualsFromTrack(), CSCDetIdSameDetLayerComparator::operator()(), muon::overlap(), CSCChipSpeedCorrectionDBConditions::prefillDBChipSpeedCorrection(), cscdqm::EventProcessor::processCSC(), MuonTrackProducer::produce(), MuonSimHitProducer::produce(), SimHitShifter::produce(), MuonMesh::pruneMesh(), MuonSeedPtExtractor::pT_extract(), CSCChamberFitter::radiusCorrection(), CSCDigiValidator::relabelCompDigis(), CSCOverlapsAlignmentAlgorithm::run(), CSCHitFromStripOnly::runStrip(), CSCPairResidualsConstraint::setZplane(), SETSeedFinder::sortByLayer(), MuonSeedPtExtractor::stationCode(), triggerCscId(), triggerSector(), ValidateGeometry::validateCSCLayerGeometry(), HLTMuon::validChambers(), and CSCSegmentValidation::whatChamberType().

77  {
78  if (((id_>>START_STATION) & MASK_STATION) == 1)
79  return ( detIdToInt((id_>>START_RING) & MASK_RING ));
80  else
81  return (((id_>>START_RING) & MASK_RING ));
82  }
uint32_t id_
Definition: DetId.h:57
static int detIdToInt(int iring)
Definition: CSCDetId.h:287
static int CSCDetId::ring ( int  index)
inlinestatic

Return Ring label for supplied CSCDetId index.

Definition at line 170 of file CSCDetId.h.

References detIdToInt(), MASK_RING, MASK_STATION, START_RING, and START_STATION.

Referenced by geometryXMLparser.CSCAlignable::index().

170  {
171  if (((index>>START_STATION) & MASK_STATION) == 1)
172  return ( detIdToInt((index>>START_RING) & MASK_RING ));
173  else
174  return (( index>>START_RING) & MASK_RING );
175  }
static int detIdToInt(int iring)
Definition: CSCDetId.h:287
int CSCDetId::station ( ) const
inline

Return Station label.

Definition at line 88 of file CSCDetId.h.

References DetId::id_, MASK_STATION, and START_STATION.

Referenced by CSCDigiToRaw::add(), CSCPairResidualsConstraint::addTrack(), AlignmentMonitorMuonResiduals::afterAlignment(), MuonAlignmentAnalyzer::analyze(), MuonAlignment::analyze(), MuonGeometrySanityCheck::analyze(), RPCEfficiency::analyze(), CSCGeometryBuilder::build(), CSCGeometryParsFromDD::build(), FWCSCWireDigiProxyBuilder::build(), CSCRecHitDBuilder::build(), CSCGeometryBuilder::buildChamber(), AlignableMuon::buildCSCEndcap(), CSCPairResidualsConstraint::calculatePhi(), cscd2r::chamberID(), MuonAlignmentFromReference::chamberPrettyNameFromId(), CSCCLCTData::comparatorDigis(), CSCChamberFitter::CSCChamberFitter(), CSCSegtoRPC::CSCSegtoRPC(), CSCReadoutMapping::detId(), CSCCFEBData::digis(), CSCDigitizer::doAction(), CSCOfflineMonitor::doBXMonitor(), CSCSkim::doCSCSkimming(), CSCOfflineMonitor::doEfficiencies(), CSCValidation::doEfficiencies(), CSCSkim::doMessyEventSkimming(), CSCOfflineMonitor::doOccupancies(), CSCValidation::doOccupancies(), CSCOfflineMonitor::doPedestalNoise(), CSCOfflineMonitor::doRecHits(), CSCValidation::doRecHits(), CSCOfflineMonitor::doResolution(), CSCValidation::doResolution(), CSCValidation::doTimeMonitoring(), CSCPairResidualsConstraint::dphidzFromTrack(), AlignmentMonitorMuonResiduals::event(), CSCConfigurableStripConditions::fetchNoisifier(), CSCEfficiency::fillRechitsSegments_info(), CSCEfficiency::fillSimhit_info(), DynamicTruncation::filteringAlgo(), CSCValidation::findNonAssociatedRecHits(), MuonAlignmentFromReference::fitAndAlign(), CSCConfigurableStripConditions::gain(), CSCDriftSim::gasGain(), cscdqm::EventProcessor::getCSCFromMap(), TrackerMuonHitExtractor::getMuonHits(), GlobalMuonRefitter::getRidOfSelectStationHits(), CSCValidation::getthisSignal(), CSCValidation::getWidth(), HLTCSCOverlapFilter::hltFilter(), iChamberType(), geometryXMLparser.DTAlignable::index(), geometryXMLparser.CSCAlignable::index(), DetIdInfo::info(), TAMuonChamberMatch::info(), fireworks::info(), TrackerMuonHitExtractor::init(), cscdqm::Summary::isChamberStandby(), CSCPairResidualsConstraint::isFiducial(), MuonSegmentMatcher::matchCSC(), TrackTransformerForGlobalCosmicMuons::MuonKeep(), MuonResidualsFromTrack::MuonResidualsFromTrack(), CSCDetIdSameDetLayerComparator::operator()(), muon::overlap(), CSCChipSpeedCorrectionDBConditions::prefillDBChipSpeedCorrection(), cscdqm::EventProcessor::processCSC(), MuonTrackProducer::produce(), MuonSimHitProducer::produce(), SimHitShifter::produce(), MuonSeedPtExtractor::pT_extract(), CSCChamberFitter::radiusCorrection(), CSCDigiValidator::relabelCompDigis(), CSCOverlapsAlignmentAlgorithm::run(), MuonSeedCleaner::SeedCandidates(), AlignmentCSCBeamHaloSelector::select(), AlignmentCSCOverlapSelector::select(), AlignmentCSCTrackSelector::select(), CSCPairResidualsConstraint::setZplane(), SETSeedFinder::sortByLayer(), TAMuonChamberMatch::station(), reco::MuonChamberMatch::station(), csc::L1TrackId::station(), MuonSeedPtExtractor::stationCode(), triggerCscId(), triggerSector(), ValidateGeometry::validateCSCLayerGeometry(), HLTMuon::validChambers(), and CSCSegmentValidation::whatChamberType().

88  {
89  return ( (id_>>START_STATION) & MASK_STATION ); }
uint32_t id_
Definition: DetId.h:57
static int CSCDetId::station ( int  index)
inlinestatic

Return Station label for supplied CSCDetId index.

Definition at line 181 of file CSCDetId.h.

References MASK_STATION, and START_STATION.

Referenced by geometryXMLparser.DTAlignable::index(), and geometryXMLparser.CSCAlignable::index().

int CSCDetId::triggerCscId ( ) const

Return trigger-level CSC id within a sector for an Endcap Muon chamber.

This id is an index within a sector such that the 3 inner ring chambers (20 degrees each) are 1, 2, 3 (increasing counterclockwise) and the 6 outer ring chambers (10 degrees each) are 4, 5, 6, 7, 8, 9 (again increasing counter-clockwise.)

This method knows which chambers are part of which sector and returns the chamber label/index/identifier accordingly. Beware that this information is liable to change according to hardware and software changes.

Definition at line 67 of file CSCDetId.cc.

References chamber(), query::result, ring(), and station().

68 {
69  // UPDATED TO OCT 2005 - LGRAY Feb 2006
70 
71  int result;
72  int ring = this->ring();
73  int station = this->station();
74  int chamber = this->chamber();
75 
76  if( station == 1 ) {
77  result = (chamber) % 3 + 1; // 1,2,3
78  switch (ring) {
79  case 1:
80  break;
81  case 2:
82  result += 3; // 4,5,6
83  break;
84  case 3:
85  result += 6; // 7,8,9
86  break;
87  }
88  }
89  else {
90  if( ring == 1 ) {
91  result = (chamber+1) % 3 + 1; // 1,2,3
92  }
93  else {
94  result = (chamber+3) % 6 + 4; // 4,5,6,7,8,9
95  }
96  }
97  return result;
98 }
int chamber() const
Definition: CSCDetId.h:70
tuple result
Definition: query.py:137
int ring() const
Definition: CSCDetId.h:77
int station() const
Definition: CSCDetId.h:88
int CSCDetId::triggerSector ( ) const

Return trigger-level sector id for an Endcap Muon chamber.

This method encapsulates the information about which chambers are in which sectors, and may need updating according to hardware changes, or software chamber indexing.

Station 1 has 3 rings of 10-degree chambers.
Stations 2, 3, 4 have an inner ring of 20-degree chambers and an outer ring of 10-degree chambers.

Sectors are 60 degree slices of a station, covering both rings.
For Station 1, there are subsectors of 30 degrees: 9 10-degree chambers (3 each from ME1/1, ME1/2, ME1/3.)

The first sector starts at phi = 15 degrees so it matches Barrel Muon sectors. We count from one not zero.

Definition at line 47 of file CSCDetId.cc.

References chamber(), query::result, ring(), and station().

Referenced by MuonIdProducer::sectorPhi().

48 {
49  // UPDATED TO OCT 2005 - LGRAY Feb 2006
50 
51  int result;
52  int ring = this->ring();
53  int station = this->station();
54  int chamber = this->chamber();
55 
56  if(station > 1 && ring > 1 ) {
57  result = ((static_cast<unsigned>(chamber-3) & 0x7f) / 6) + 1; // ch 3-8->1, 9-14->2, ... 1,2 -> 6
58  }
59  else {
60  result = (station != 1) ? ((static_cast<unsigned>(chamber-2) & 0x1f) / 3) + 1 : // ch 2-4-> 1, 5-7->2, ...
61  ((static_cast<unsigned>(chamber-3) & 0x7f) / 6) + 1;
62  }
63 
64  return (result <= 6) ? result : 6; // max sector is 6, some calculations give a value greater than six but this is expected.
65 }
int chamber() const
Definition: CSCDetId.h:70
tuple result
Definition: query.py:137
int ring() const
Definition: CSCDetId.h:77
int station() const
Definition: CSCDetId.h:88
short int CSCDetId::zendcap ( ) const
inline

What is the sign of global z?

Definition at line 102 of file CSCDetId.h.

References endcap().

102  {
103  return ( endcap()!=1 ? -1 : +1 );
104  }
int endcap() const
Definition: CSCDetId.h:95