CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CSCNumberingScheme.cc
Go to the documentation of this file.
6 
7 #include <iostream>
8 
9 //#define LOCAL_DEBUG
10 
12  initMe(muonConstants);
13 }
14 
16 {
17  MuonDDDConstants muonConstants(cpv);
18  initMe(muonConstants);
19 }
20 
21 void CSCNumberingScheme::initMe ( const MuonDDDConstants& muonConstants ) {
22  int theLevelPart=muonConstants.getValue("level");
23  theRegionLevel=muonConstants.getValue("me_region")/theLevelPart;
24  theStationLevel=muonConstants.getValue("me_station")/theLevelPart;
25  theSubringLevel=muonConstants.getValue("me_subring")/theLevelPart;
26  theSectorLevel=muonConstants.getValue("me_sector")/theLevelPart;
27  theRingLevel=muonConstants.getValue("me_ring")/theLevelPart;
28  theLayerLevel=muonConstants.getValue("me_layer")/theLevelPart;
29 #ifdef LOCAL_DEBUG
30  std::cout << "theRegionLevel " << theRegionLevel <<std::endl;
31  std::cout << "theStationLevel " << theStationLevel <<std::endl;
32  std::cout << "theSubringLevel " << theSubringLevel <<std::endl;
33  std::cout << "theSectorLevel " << theSectorLevel <<std::endl;
34  std::cout << "theRingLevel " << theRingLevel <<std::endl;
35  std::cout << "theLayerLevel " << theLayerLevel <<std::endl;
36 #endif
37 }
38 
40 
41 #ifdef LOCAL_DEBUG
42  std::cout << "CSCNumbering "<<num.getLevels()<<std::endl;
43  for (int level=1;level<=num.getLevels();level++) {
44  std::cout << level << " " << num.getSuperNo(level)
45  << " " << num.getBaseNo(level) << std::endl;
46  }
47 #endif
48 
49  int fwbw_id=0;
50  int station_id=0;
51  int ring_id=0;
52  int subring_id=0;
53  int sector_id=0;
54  int layer_id=0;
55 
56  // Decode endcap levels
57  // We should be able to work with 6 (layer-level) or 5 (chamber-level)
58 
59  for (int level=1;level<=num.getLevels();level++) {
60 
61  if (level==theRegionLevel) {
62  const int copyno=num.getBaseNo(level);
63  fwbw_id=copyno+1;
64  LogDebug("CSCNumbering") << "endcap=" << fwbw_id ;
65 
66  } else if (level==theStationLevel) {
67  const int station_tag = num.getSuperNo(level);
68  station_id=station_tag;
69  LogDebug("CSCNumbering")<< "station=" << station_id ;
70 
71  } else if (level==theSubringLevel) {
72  const int copyno=num.getBaseNo(level);
73  subring_id=copyno+1;
74  LogDebug("CSCNumbering")<<"subring=" << subring_id ;
75 
76  } else if (level==theSectorLevel) {
77  const int copyno=num.getBaseNo(level);
78  sector_id=copyno+1;
79  LogDebug("CSCNumbering")<< "sector=" << sector_id ;
80 
81  } else if (level==theLayerLevel) {
82  const int copyno=num.getBaseNo(level);
83  layer_id=copyno+1;
84  LogDebug("CSCNumbering") << "layer=" << layer_id ;
85 
86  } else if (level==theRingLevel) {
87  const int ring_tag = num.getSuperNo(level);
88  ring_id=ring_tag;
89  LogDebug("CSCNumbering") << "ring=" << ring_id ;
90  }
91  }
92 
93  // check validity
94 
95  if ((fwbw_id < 1) || (fwbw_id > 2)) {
96  edm::LogError("CSCNumbering") << "@SUB=CSCNumberingScheme::baseNumberToUnitNumber" << "forward/backward id out of range:" << fwbw_id;
97  }
98 
99  if ((station_id < 1) || (station_id > 4)) {
100  edm::LogError("CSCNumbering") << "@SUB=CSCNumberingScheme::baseNumberToUnitNumber" << "station id out of range:" << station_id;
101  }
102 
103  if ((ring_id < 1) || (ring_id > 4)) {
104  edm::LogError("CSCNumbering") << "@SUB=CSCNumberingScheme::baseNumberToUnitNumber" << "ring id out of range:" << ring_id ;
105  }
106 
107  if ((subring_id < 1) || (subring_id > 2)) {
108  edm::LogError("CSCNumbering") << "@SUB=CSCNumberingScheme::baseNumberToUnitNumber" << "subring id out of range:" << subring_id ;
109  }
110 
111  if ((sector_id < 1) || (sector_id > 36)) {
112  edm::LogError("CSCNumbering") << "@SUB=CSCNumberingScheme::baseNumberToUnitNumber" << "sector id out of range:" << sector_id ;
113  }
114 
115  // Allow id=0 since that means a chamber
116  if ((layer_id < 0) || (layer_id > 6)) {
117  edm::LogError("CSCNumbering") << "@SUB=CSCNumberingScheme::baseNumberToUnitNumber" << "layer id out of range" << layer_id ;
118  }
119 
120  // find appropriate chamber label
121 
122  int chamber_id=chamberIndex(station_id, ring_id,
123  subring_id, sector_id);
124 
125  // convert into raw id of appropriate DetId
126 
127  int intIndex=CSCDetId::rawIdMaker(fwbw_id, station_id, ring_id,
128  chamber_id, layer_id);
129 
130 #ifdef LOCAL_DEBUG
131  std::cout << "CSCNumberingScheme : ";
132  std::cout << " fw/bw " << fwbw_id;
133  std::cout << " station " << station_id;
134  std::cout << " ring " << ring_id;
135  std::cout << " subring " << subring_id;
136  std::cout << " chamber " << chamber_id;
137  std::cout << " sector " << sector_id;
138  std::cout << " layer " << layer_id;
139  std::cout << std::endl;
140 #endif
141 
142  return intIndex;
143 }
144 
146  int ring_id, int subring_id, int sector_id) const {
147 
148  int chamber_id=0;
149 
150  // chamber label is related to sector_id but we need to
151  // adjust to real hardware labelling
152  // Tim confirms this works properly according to CMS IN 2000/004 Version 2.5 March 2007.
153 
154  if (ring_id == 3) {
155  chamber_id=sector_id;
156  } else {
157  if (subring_id == 1) {
158  chamber_id=2*sector_id-1;
159  } else {
160  chamber_id=2*sector_id;
161  }
162  }
163 
164  return chamber_id;
165 
166 }
#define LogDebug(id)
void initMe(const MuonDDDConstants &muonConstants)
int getBaseNo(int level) const
static int rawIdMaker(int iendcap, int istation, int iring, int ichamber, int ilayer)
Definition: CSCDetId.h:146
type of data representation of DDCompactView
Definition: DDCompactView.h:77
CSCNumberingScheme(const MuonDDDConstants &muonConstants)
int getValue(const std::string &name) const
int chamberIndex(int, int, int, int) const
virtual int baseNumberToUnitNumber(const MuonBaseNumber)
long long int num
Definition: procUtils.cc:71
int getLevels() const
int getSuperNo(int level) const
tuple cout
Definition: gather_cfg.py:121
tuple level
Definition: testEve_cfg.py:34