CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
UCTCTP7RawData.h
Go to the documentation of this file.
1 #ifndef UCTCTP7RawData_hh
2 #define UCTCTP7RawData_hh
3 
6 using namespace edm;
7 
9 public:
10 
11  enum CaloType {EBEE=0, HBHE, HF};
12 
13  UCTCTP7RawData(const uint32_t *d) : myDataPtr(d) {
14  if(myDataPtr != 0) {
15  if(sof() != 0xA110CA7E) {
16  LogError("UCTCTP7RawData") << "Failed to see 0xA110CA7E at start - but continuing" << std::endl;
17  }
18  }
19  }
20 
21  virtual ~UCTCTP7RawData() {;}
22 
23  // Access functions for convenience
24 
25  const uint32_t *dataPtr() const {return myDataPtr;}
26 
27  uint32_t sof() {return myDataPtr[0];}
28 
29  uint32_t caloLinkBXID() {return (myDataPtr[1] & 0x00000FFF);}
30 
31  uint32_t nBXPerL1A() {return ((myDataPtr[1] & 0x000F0000) >> 16);}
32 
33  uint32_t getIndex(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi) {
34  uint32_t index = 0xDEADBEEF;
35  if(cType == EBEE || cType == HBHE) {
36  if(iPhi > 3) {
37  LogError("UCTCTP7RawData") << "Incorrect iPhi; iPhi = " << iPhi << "; should be in [0,3]" << std::endl;
38  return 0xDEADBEEF;
39  }
40  if(cEta < 1 || cEta > 28) {
41  LogError("UCTCTP7RawData") << "Incorrect caloEta; cEta = " << cEta << "; should be in [1-28]" << std::endl;
42  return 0xDEADBEEF;
43  }
44  // ECAL/HB+HE fragment size is 3 32-bit words
45  // Each fragment covers 2 eta and 4 phi towers
46  // All four phi towers are in one 32-bit word
47  // Even and odd eta are in neighboring 32-bit words
48  index = 2 + ( ((cEta - 1) / 2) * (3 + 3) + ((cEta - 1) % 2) );
49  // But, towers are arranged in a peculiar order for firmware
50  // convenience - the index needs to be computing with these
51  // if statements. This is brittle code that one should be
52  // very careful with.
53  if(negativeEta) {
54  // Add offset for 6 ECAL and 6 HCAL fragments
55  index += (6 * (3 + 3));
56  }
57  else {
58  if(cEta > 12) {
59  // Add offset for 14 ECAL, 14 HB+HE and 2 HF fragments
60  // Note that first six are included in the definition of
61  // the variable - index
62  // Note also that HF fragments are larger at 4 32-bit words
63  index += ((14 * (3 + 3) + (2 * 4)));
64  }
65  }
66  // Data starts with ECAL towers so offset by 3 additional 32-bit words
67  if(cType == HBHE) index += 3;
68  }
69  else if(cType == HF) {
70  if(iPhi > 1) {
71  LogError("UCTCTP7RawData") << "HF iPhi should be 0 or 1 (for a , b) - invalid iPhi = " << iPhi << std::endl;
72  return 0xDEADBEEF;
73  }
74  if(cEta < 30 || cEta > 41) {
75  LogError("UCTCTP7RawData") << "HF cEta should be between 30 and 41 - invalid cEta = " << cEta << std::endl;
76  return 0xDEADBEEF;
77  }
78  if(negativeEta) {
79  if(iPhi == 0) {
80  // Offset by 6 positive eta and 14 negative eta EBEE/HBHE fragments (each 3 32-bit words)
81  // There are four HF cEta towers packed in each 32-bit word
82  // Add additional offset of 1 for (34-37) and 2 for (38-41)
83  index = 2 + 20 * (3 + 3) + ((cEta - 30) / 4);
84  }
85  else {
86  // Additional HF a fragment offset for HF b channel
87  index = 2 + 20 * (3 + 3) + 1 * 4 + ((cEta - 30) / 4);
88  }
89  }
90  else {
91  if(iPhi == 0) {
92  // Offset by all EBEE/HBHE and two HF fragments (4 32-bit words)
93  index = 2 + 2 * 14 * (3 + 3) + 2 * 4 + ((cEta - 30) / 4);
94  }
95  else {
96  // Additional HF a fragment offset for HF b channel
97  index = 2 + 2 * 14 * (3 + 3) + 3 * 4 + ((cEta - 30) / 4);
98  }
99  }
100  }
101  else {
102  LogError("UCTCTP7RawData") << "Unknown CaloType " << cType << std::endl;
103  return 0xDEADBEEF;
104  }
105  return index;
106  }
107 
108  uint32_t getFeatureIndex(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi) {
109  // Get index into the data words for the tower
110  uint32_t index = getIndex(cType, negativeEta, cEta, iPhi);
111  if(cType == EBEE || cType == HBHE) {
112  // Two 32-bit words contain ET, so we should offset the index to
113  // to the feature and link status bits
114  if(((cEta - 1) % 2) == 0) {
115  // [index] is offset to ET of first four towers (0 - 3)
116  // [index + 2] is where the feature and link status bits are
117  index += 2;
118  }
119  else {
120  // In this case [index] is offset to ET of second four towers (4 - 7)
121  // [index + 1] is where the feature and link status bits are
122  index += 1;
123  }
124  }
125  else if(cType == HF) {
126  // HF Fragment has different structure than EBEE and HBHE fragments
127  // First three 32-bit words have ETs for 11 objects (yes, 11 not 12)
128  // cEta = 40 / 41 are double in eta and flop bettween a and b HF fragments
129  // Further the remaining upper byte of the third word actually has feature
130  // bits. This feature index will point to the 4th 32-bit word. It is
131  // expected that the top byte from 3rd 32-bit word will be patched in within
132  // the feature bit access function.
133  // Since there are three instead of if block as above for EBEE, HBHE
134  // I wrote here a more compact implementation of index computation.
135  index += (3 - ((cEta - 30) / 4));
136  }
137  else {
138  return 0xDEADBEEF;
139  }
140  return index;
141  }
142 
143  uint32_t getET(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi) {
144  uint32_t index = getIndex(cType, negativeEta, cEta, iPhi);
145  const uint32_t data = myDataPtr[index];
146  uint32_t et = 0xDEADBEEF;
147  if(cType == HF) {
148  // Pick out the correct 8-bits for the iEta chosen
149  // Note that cEta = 41 is special, it only occurs for iPhi == 1 and shares cEta = 40 position
150  if(cEta == 41) et = ((data >> 16) & 0xFF);
151  else et = ((data >> ((cEta - 30) % 4) * 8) & 0xFF);
152  }
153  else {
154  // Pick out the correct 8-bits for the iPhi chosen
155  et = ((data >> (iPhi * 8)) & 0xFF);
156  }
157  return et;
158  }
159 
160  bool getFB(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi) {
161  uint32_t index = getFeatureIndex(cType, negativeEta, cEta, iPhi);
162  const uint32_t data = myDataPtr[index];
163  bool fb = false;
164  if(cType == HF) {
165  // Two bits are expected from HF - this is interface to get one compressed bit!
166  fb = (getHFFeatureBits(negativeEta, cEta, iPhi) != 0);
167  }
168  else {
169  // Pick out the correct bit for the tower chosen
170  uint32_t tower = iPhi;
171  if(((cEta - 1) % 2) == 1) {
172  tower += 4;
173  }
174  fb = ((data & (0x1 << tower)) != 0);
175  }
176  return fb;
177  }
178 
179  uint32_t getHFFeatureBits(bool negativeEta, uint32_t cEta, uint32_t iPhi) {
180  uint32_t index = getFeatureIndex(HF, negativeEta, cEta, iPhi);
181  // Stitch together the top 8 bits from previous 32-bit word and bottom 14 bits from this word
182  const uint32_t data = ((myDataPtr[index] & 0x3FFF) << 8) + (myDataPtr[index - 1] >> 24);
183  uint32_t shift = (cEta - 30) * 2;
184  if(cEta == 41) shift = 20; // 41 occurs on b-fiber but shares the position of 40
185  return ((data >> shift) & 0x3);
186  }
187 
188  uint32_t getLinkStatus(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi) {
189  uint32_t index = getFeatureIndex(cType, negativeEta, cEta, iPhi);
190  const uint32_t data = myDataPtr[index];
191  return (data >> 16);
192  }
193 
194  uint32_t getSummaryIndex(bool negativeEta, uint32_t region) {
195  uint32_t index = 2 + 2 * 14 * (3 + 3) + 4 * 4 + (region / 2);
196  if(negativeEta) index += 4;
197  return index;
198  }
199 
200  uint32_t getRegionSummary(bool negativeEta, uint32_t region) {
201  uint32_t index = getSummaryIndex(negativeEta, region);
202  const uint32_t data = myDataPtr[index];
203  return (data >> (16 * (region % 2)));
204  }
205 
206  uint32_t getRegionET(bool negativeEta, uint32_t region) {
207  return (getRegionSummary(negativeEta, region) & 0x3FF);
208  }
209 
210  bool getRegionEGVeto(bool negativeEta, uint32_t region) {
211  return (getRegionSummary(negativeEta, region) & 0x0400);
212  }
213 
214  bool getRegionTauVeto(bool negativeEta, uint32_t region) {
215  return (getRegionSummary(negativeEta, region) & 0x0800);
216  }
217 
218  uint32_t getRegionHitLocation(bool negativeEta, uint32_t region) {
219  return ((getRegionSummary(negativeEta, region) & 0xF000) >> 12);
220  }
221 
222  bool isTowerMasked(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi) {
223  uint32_t linkStatus = getLinkStatus(cType, negativeEta, cEta, iPhi);
224  uint32_t tower = iPhi;
225  if(((cEta - 1) % 2) == 1) tower += 4;
226  if(cType == HF) {
227  tower = (cEta - 30);
228  if(cEta == 41) tower = 10;
229  }
230  return ((linkStatus & (0x1 << tower)) != 0);
231  }
232 
233  bool isLinkMisaligned(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi) {
234  uint32_t linkStatus = getLinkStatus(cType, negativeEta, cEta, iPhi);
235  return ((linkStatus & 0x00001000) != 0);
236  }
237 
238  bool isLinkInError(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi) {
239  uint32_t linkStatus = getLinkStatus(cType, negativeEta, cEta, iPhi);
240  return ((linkStatus & 0x00002000) != 0);
241  }
242 
243  bool isLinkDown(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi) {
244  uint32_t linkStatus = getLinkStatus(cType, negativeEta, cEta, iPhi);
245  return ((linkStatus & 0x00004000) != 0);
246  }
247 
248  bool isLinkMasked(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi) {
249  uint32_t linkStatus = getLinkStatus(cType, negativeEta, cEta, iPhi);
250  return ((linkStatus & 0x00008000) != 0);
251  }
252 
253  void print() {
254  using namespace std;
255  cout << "CTP7 Payload Header:" << endl;
256  cout << "No BX per L1A = " << dec << nBXPerL1A() << endl;
257  cout << "Calo BX ID = " << dec << caloLinkBXID() << endl;
258  CaloType cType = EBEE;
259  bool negativeEta = false;
260  bool first = true;
261  for(uint32_t i = 0; i < 2; i++) {
262  if(i != 0) negativeEta = true;
263  first = true;
264  cType = EBEE;
265  for(uint32_t cEta = 1; cEta <= 28; cEta++) {
266  for(uint32_t iPhi = 0; iPhi < 4; iPhi++) {
267  if(getLinkStatus(cType, negativeEta, cEta, iPhi) != 0 ||
268  getET(cType, negativeEta, cEta, iPhi) != 0) {
269  if(first) cout << "EcalET FG LinkStatus" << endl;
270  first = false;
271  cout << dec << setfill(' ') << setw(6) << getET(cType, negativeEta, cEta, iPhi) << " "
272  << getFB(cType, negativeEta, cEta, iPhi) << " "
273  << showbase << internal << setfill('0') << setw(10) << hex << getLinkStatus(cType, negativeEta, cEta, iPhi)
274  << " (" << dec << getIndex(cType, negativeEta, cEta, iPhi) << ", " << negativeEta << ", " << cEta << ", " << iPhi << ")"
275  << endl;
276  }
277  }
278  }
279  first = true;
280  cType = HBHE;
281  for(uint32_t cEta = 1; cEta <= 28; cEta++) {
282  for(uint32_t iPhi = 0; iPhi < 4; iPhi++) {
283  if(getLinkStatus(cType, negativeEta, cEta, iPhi) != 0 ||
284  getET(cType, negativeEta, cEta, iPhi) != 0) {
285  if(first) cout << "HcalET Feature LinkStatus" << endl;
286  first = false;
287  cout << dec << setfill(' ') << setw(6) << getET(cType, negativeEta, cEta, iPhi) << " "
288  << getFB(cType, negativeEta, cEta, iPhi) << " "
289  << showbase << internal << setfill('0') << setw(10) << hex << getLinkStatus(cType, negativeEta, cEta, iPhi)
290  << " (" << dec << getIndex(cType, negativeEta, cEta, iPhi) << ", " << negativeEta << ", " << cEta << ", " << iPhi << ")"
291  << endl;
292  }
293  }
294  }
295  first = true;
296  cType = HF;
297  for(uint32_t cEta = 30; cEta <= 40; cEta++) {
298  for(uint32_t iPhi = 0; iPhi < 2; iPhi++) {
299  if(iPhi == 1 && cEta == 40) cEta = 41;
300  if(getLinkStatus(cType, negativeEta, cEta, iPhi) != 0 ||
301  getET(cType, negativeEta, cEta, iPhi) != 0) {
302  if(first) cout << "HF-ET Feature LinkStatus" << endl;
303  first = false;
304  cout << dec << setfill(' ') << setw(6) << getET(cType, negativeEta, cEta, iPhi) << " "
305  << dec << setfill(' ') << setw(2) << getHFFeatureBits(negativeEta, cEta, iPhi) << " "
306  << showbase << internal << setfill('0') << setw(10) << hex << getLinkStatus(cType, negativeEta, cEta, iPhi)
307  << " (" << dec << getIndex(cType, negativeEta, cEta, iPhi) << ", " << negativeEta << ", " << cEta << ", " << iPhi << ")"
308  << endl;
309  }
310  }
311  }
312  first = true;
313  for(uint32_t region = 0; region < 7; region++) {
314  if(first) cout << "Region ET EGVeto TauVeto HitLocation" << endl;
315  first = false;
316  cout << dec << setfill(' ') << setw(6) << region
317  << dec << setfill(' ') << setw(8) << getRegionET(negativeEta, region)
318  << " " << getRegionEGVeto(negativeEta, region)
319  << " " << getRegionTauVeto(negativeEta, region)
320  << " " << showbase << internal << setfill('0') << setw(3) << hex << getRegionHitLocation(negativeEta, region)
321  << endl;
322  }
323  }
324  }
325 
326 private:
327 
328  // No copy constructor and equality operator are needed
329 
331  const UCTCTP7RawData& operator=(const UCTCTP7RawData& i);
332 
333  // RawData data
334 
335  const uint32_t* myDataPtr;
336 
337 };
338 
339 #endif
int i
Definition: DBlmapReader.cc:9
bool getRegionTauVeto(bool negativeEta, uint32_t region)
uint32_t getSummaryIndex(bool negativeEta, uint32_t region)
uint32_t getHFFeatureBits(bool negativeEta, uint32_t cEta, uint32_t iPhi)
uint32_t caloLinkBXID()
bool isLinkMasked(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi)
uint32_t sof()
const uint32_t * myDataPtr
bool isLinkDown(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi)
int const HF
Definition: Constants.h:86
tuple d
Definition: ztail.py:151
bool getRegionEGVeto(bool negativeEta, uint32_t region)
uint32_t nBXPerL1A()
bool isLinkInError(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi)
bool isTowerMasked(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi)
uint32_t getLinkStatus(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi)
uint32_t getIndex(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi)
UCTCTP7RawData(const uint32_t *d)
uint32_t getRegionET(bool negativeEta, uint32_t region)
uint32_t getET(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi)
bool getFB(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi)
const uint32_t * dataPtr() const
static unsigned int const shift
tuple cout
Definition: gather_cfg.py:145
virtual ~UCTCTP7RawData()
T first(std::pair< T, U > const &p)
uint32_t getRegionSummary(bool negativeEta, uint32_t region)
uint32_t getRegionHitLocation(bool negativeEta, uint32_t region)
uint32_t getFeatureIndex(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi)
bool isLinkMisaligned(CaloType cType, bool negativeEta, uint32_t cEta, uint32_t iPhi)