CMS 3D CMS Logo

GEMeMap.cc
Go to the documentation of this file.
5 
7  theVersion("") {}
8 
10  theVersion(version) {}
11 
13 
14 const std::string & GEMeMap::version() const {
15  return theVersion;
16 }
17 
19  // fed->amc->geb mapping to GEMDetId
20  for (auto imap : theChamberMap_) {
21  for (unsigned int ix=0;ix<imap.fedId.size();ix++) {
23  ec.fedId = imap.fedId[ix];
24  ec.amcNum = imap.amcNum[ix];
25  ec.gebId = imap.gebId[ix];
26 
28  dc.detId = GEMDetId((imap.gemNum[ix] > 0) ? 1:-1, 1, abs(imap.gemNum[ix]/1000), abs(imap.gemNum[ix]/100%10), abs(imap.gemNum[ix]%100), 0);
29  dc.vfatVer = imap.vfatVer[ix];
30 
31  romap.add(ec, dc);
32  }
33  }
34  // chamberType to vfatType
35  for (auto imap : theVFatMap_) {
36  for (unsigned int ix=0;ix<imap.vfatAdd.size();ix++) {
37  GEMDetId gemId((imap.gemNum[ix] > 0) ? 1:-1, 1, abs(imap.gemNum[ix]/1000), abs(imap.gemNum[ix]/100%10), abs(imap.gemNum[ix]%100), imap.iEta[ix]);
38 
40  ec.detId = gemId.chamberId();
41  ec.vfatAdd = imap.vfatAdd[ix] & chipIdMask_;
42 
44  dc.vfatType = imap.vfatType[ix];
45  dc.detId = gemId;
46  dc.localPhi = imap.localPhi[ix];
47 
48  romap.add(ec, dc);
49  romap.add(gemId.chamberId(),ec);
50 
51  }
52  }
53  // channel mapping
54  for (auto imap : theStripMap_) {
55  for (unsigned int ix=0;ix<imap.vfatType.size();ix++) {
57  cMap.vfatType = imap.vfatType[ix];
58  cMap.chNum = imap.vfatCh[ix];
59 
61  sMap.vfatType = imap.vfatType[ix];
62  sMap.stNum = imap.vfatStrip[ix];
63 
64  romap.add(cMap, sMap);
65  romap.add(sMap, cMap);
66  }
67  }
68 
69 }
70 
72  // 12 bits for vfat, 5 bits for geb, 8 bit long GLIB serial number
73  unsigned int fedId = FEDNumbering::MINGEMFEDID;
74  uint8_t amcNum = 0; //amc
75  uint8_t gebId = 0;
76 
77  for (int re = -1; re <= 1; re = re+2) {
78  for (int st = GEMDetId::minStationId; st<=GEMDetId::maxStationId; ++st) {
79  int maxVFat = maxVFatGE11_;
80  if (st == 2) maxVFat = maxVFatGE21_;
81  if (st == 0) maxVFat = maxVFatGE0_;
82 
83  for (int ch = 1; ch<=GEMDetId::maxChamberId; ++ch) {
84  for (int ly = 1; ly<=GEMDetId::maxLayerId; ++ly) {
85  GEMDetId gemId(re, 1, st, ly, ch, 0);
86 
88  ec.fedId = fedId;
89  ec.gebId = gebId;
90  ec.amcNum = amcNum;
91 
93  dc.detId = gemId;
94  dc.vfatVer = vfatVerV3_;
95 
96  romap.add(ec, dc);
97 
98  uint16_t chipPos = 0;
99  for (int lphi = 0; lphi < maxVFat; ++lphi) {
100  for (int roll = 1; roll<=maxEtaPartition_; ++roll) {
102  vec.vfatAdd = chipPos;
103  vec.detId = gemId;
104 
106  vdc.vfatType = vfatTypeV3_;// > 10 is vfat v3
107  vdc.detId = GEMDetId(re, 1, st, ly, ch, roll);
108  vdc.localPhi = lphi;
109 
110  romap.add(vec,vdc);
111  romap.add(gemId.chamberId(),vec);
112 
113  chipPos++;
114  }
115  }
116 
117  // 1 geb per chamber
118  gebId++;
119  // 5 bits for gebId
120  if (gebId == maxGEBs_) {
121  // 24 gebs per amc
122  gebId = 0;
123  amcNum++;
124  }
125  if (amcNum == maxAMCs_) {
126  gebId = 0;
127  amcNum = 0;
128  fedId++;
129  }
130  }
131  }
132  }
133  }
134 
135  for (int i = 0; i < maxChan_; ++i) {
136  // only 1 vfat type for dummy map
138  cMap.vfatType = vfatTypeV3_;
139  cMap.chNum = i;
140 
142  sMap.vfatType = vfatTypeV3_;
143  sMap.stNum = i;
144 
145  romap.add(cMap, sMap);
146  romap.add(sMap, cMap);
147  }
148 }
std::vector< GEMChamberMap > theChamberMap_
Definition: GEMeMap.h:48
std::string theVersion
Definition: GEMeMap.h:53
static const int maxEtaPartition_
Definition: GEMeMap.h:71
static const int maxVFatGE0_
Definition: GEMeMap.h:66
void add(chamEC e, chamDC d)
Definition: GEMROMapping.h:101
static const int vfatVerV3_
Definition: GEMeMap.h:59
void convert(GEMROMapping &romap)
Definition: GEMeMap.cc:18
unsigned int fedId
Definition: GEMROMapping.h:11
static const int maxChan_
Definition: GEMeMap.h:69
static const int maxChamberId
Definition: GEMDetId.h:104
void convertDummy(GEMROMapping &romap)
Definition: GEMeMap.cc:71
std::vector< GEMStripMap > theStripMap_
Definition: GEMeMap.h:50
static const int maxLayerId
Definition: GEMDetId.h:108
GEMDetId chamberId() const
Return the corresponding ChamberId.
Definition: GEMDetId.h:85
const std::string & version() const
Definition: GEMeMap.cc:14
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
static const int maxStationId
Definition: GEMDetId.h:101
GEMeMap()
Definition: GEMeMap.cc:6
std::vector< GEMVFatMap > theVFatMap_
Definition: GEMeMap.h:49
static const int maxAMCs_
Definition: GEMeMap.h:65
static const int maxGEBs_
Definition: GEMeMap.h:64
static const int minStationId
Definition: GEMDetId.h:100
static const int chipIdMask_
Definition: GEMeMap.h:62
virtual ~GEMeMap()
Definition: GEMeMap.cc:12
static const int maxVFatGE21_
Definition: GEMeMap.h:68
static const int vfatTypeV3_
Definition: GEMeMap.h:60
static const int maxVFatGE11_
Definition: GEMeMap.h:67