CMS 3D CMS Logo

CSCALCTHeader2006.cc
Go to the documentation of this file.
3 
4 #ifdef LOCAL_UNPACK
5 static int activeFEBsForChamberType[11] = {0, 7, 7, 0xf, 7, 0x7f, 0xf, 0x3f, 0xf, 0x3f, 0xf};
6 static int nTBinsForChamberType[11] = {7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7};
7 #else
8 constexpr int activeFEBsForChamberType[11] = {0, 7, 7, 0xf, 7, 0x7f, 0xf, 0x3f, 0xf, 0x3f, 0xf};
9 constexpr int nTBinsForChamberType[11] = {7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7};
10 #endif
11 
12 CSCALCTHeader2006::CSCALCTHeader2006(int chamberType) { //constructor for digi->raw packing based on header2006
13  // we count from 1 to 10, ME11, ME12, ME13, ME1A, ME21, ME22, ....
14  init();
15  flag_0 = 0xC;
16  flag_1 = 0;
17  reserved_1 = 0;
18  fifoMode = 1;
19  // examiner demands this
20  l1aMatch = 1;
25  //memcpy(theOriginalBuffer, &header2006, header2006.sizeForPacking());
26 }
27 
29  l1Acc = dmb.l1a();
30  cscID = dmb.dmbID();
31  nTBins = 16;
32  bxnCount = dmb.bxn();
33 }
34 
35 unsigned short CSCALCTHeader2006::nLCTChipRead() const {
36  int count = 0;
37  for (int i = 0; i < 7; ++i) {
38  if ((lctChipRead >> i) & 1)
39  ++count;
40  }
41  return count;
42 }
43 
44 std::vector<CSCALCTDigi> CSCALCTs2006::ALCTDigis() const {
45  std::vector<CSCALCTDigi> result;
46  result.reserve(2);
47 
48  CSCALCTDigi digi0(
50  CSCALCTDigi digi1(
52  result.push_back(digi0);
53  result.push_back(digi1);
54  return result;
55 }
56 
57 void CSCALCTs2006::add(const std::vector<CSCALCTDigi>& digis) {
58  //FIXME doesn't do any sorting
59  if (!digis.empty())
60  addALCT0(digis[0]);
61  if (digis.size() > 1)
62  addALCT1(digis[1]);
63 }
64 
66  alct0_valid = digi.isValid();
67  alct0_quality = digi.getQuality();
68  alct0_accel = digi.getAccelerator();
70  alct0_key_wire = digi.getKeyWG();
71  // probably not right
72  alct0_bxn_low = digi.getBX();
73 }
74 
76  alct1_valid = digi.isValid();
77  alct1_quality = digi.getQuality();
78  alct1_accel = digi.getAccelerator();
80  alct1_key_wire = digi.getKeyWG();
81  // probably not right
82  alct1_bxn_low = digi.getBX();
83 }
bool isValid() const
check ALCT validity (1 - valid ALCT)
Definition: CSCALCTDigi.h:40
unsigned alct0_pattern
unsigned bxnCount
full bunch crossing number
unsigned fifoMode
see the FIFO_MODE enum
uint16_t getBX() const
return BX - five low bits of BXN counter tagged by the ALCT
Definition: CSCALCTDigi.h:73
unsigned bxn() const
Definition: CSCDMBHeader.h:37
unsigned alct0_valid
unsigned alct1_pattern
unsigned alct1_key_wire
void addALCT0(const CSCALCTDigi &digi)
void setEventInformation(const CSCDMBHeader &)
uint16_t getQuality() const
return quality of a pattern
Definition: CSCALCTDigi.h:46
unsigned alct1_bxn_high
unsigned short nLCTChipRead() const
unsigned alct1_accel
unsigned alct1_valid
2nd LCT lower 15 bits
constexpr int activeFEBsForChamberType[11]
constexpr int nTBinsForChamberType[11]
unsigned flag_1
DDU+LCT special word flags.
void addALCT1(const CSCALCTDigi &digi)
uint16_t getKeyWG() const
return key wire group
Definition: CSCALCTDigi.h:67
uint16_t getCollisionB() const
Definition: CSCALCTDigi.h:61
unsigned nTBins
of 25 ns time bins in the raw dump
unsigned l1a() const
Definition: CSCDMBHeader.h:39
unsigned alct0_key_wire
std::vector< CSCALCTDigi > ALCTDigis() const
unsigned reserved_1
reserved, set to 0
unsigned dmbID() const
Definition: CSCDMBHeader.h:36
unsigned alct0_bxn_high
uint16_t getAccelerator() const
Definition: CSCALCTDigi.h:53
unsigned alct0_quality
void add(const std::vector< CSCALCTDigi > &digis)
should try to sort, but doesn&#39;t for now
unsigned l1Acc
l1 accept counter
unsigned alct1_quality
unsigned lctChipRead
LCT chips read out in raw hit dump.
unsigned activeFEBs
LCT chips with ADB hits.
unsigned alct0_accel
unsigned cscID
chamber ID number
unsigned alct1_bxn_low
unsigned l1aMatch
exteran L1A arrived in L1A window
unsigned alct0_bxn_low
unsigned flag_0
should be &#39;01100&#39;, so it&#39;ll be a 6xxx in the ASCII dump
CSCALCTHeader2006()
this struct contains all 2006 ALCT Header words except ALCTs