CMS 3D CMS Logo

HFRingUnpacker.cc
Go to the documentation of this file.
3 
4 #include "CaloCollections.h"
5 #include "HFRingUnpacker.h"
6 
7 namespace l1t {
8  namespace stage1 {
10  LogDebug("L1T") << "Block ID = " << block.header().getID() << " size = " << block.header().getSize();
11 
12  int nBX = int(ceil(block.header().getSize() / 2.));
13 
14  // Find the first and last BXs
15  int firstBX = -(ceil((double)nBX / 2.) - 1);
16  int lastBX;
17  if (nBX % 2 == 0) {
18  lastBX = ceil((double)nBX / 2.) + 1;
19  } else {
20  lastBX = ceil((double)nBX / 2.);
21  }
22 
23  auto resHFBitCounts_ = static_cast<CaloCollections*>(coll)->getCaloSpareHFBitCounts();
24  resHFBitCounts_->setBXRange(firstBX, lastBX);
25 
26  auto resHFRingSums_ = static_cast<CaloCollections*>(coll)->getCaloSpareHFRingSums();
27  resHFRingSums_->setBXRange(firstBX, lastBX);
28 
29  auto reset_ = static_cast<CaloCollections*>(coll)->getEtSums();
30  reset_->setBXRange(firstBX, lastBX);
31 
32  LogDebug("L1T") << "nBX = " << nBX << " first BX = " << firstBX << " lastBX = " << lastBX;
33 
34  // Initialise index
35  int unsigned i = 0;
36 
37  // Loop over multiple BX and then number of jets filling jet collection
38  for (int bx = firstBX; bx < lastBX; bx++) {
39  uint32_t raw_data0 = block.payload()[i++];
40  uint32_t raw_data1 = block.payload()[i++];
41 
42  /* if (raw_data0 == 0 || raw_data1==0) continue; */
43 
44  uint16_t candbit[4];
45  candbit[0] = raw_data0 & 0xFFFF;
46  candbit[1] = (raw_data0 >> 16) & 0xFFFF;
47  candbit[2] = raw_data1 & 0xFFFF;
48  candbit[3] = (raw_data1 >> 16) & 0xFFFF;
49 
50  int hfbitcount = candbit[0] & 0xFFF;
51  int hfringsum = ((candbit[0] >> 12) & 0x7) | ((candbit[2] & 0x1FF) << 3);
52  int htmissphi = candbit[1] & 0x1F;
53  int htmiss = (candbit[1] >> 5) & 0x7F;
54  int overflowhtmiss = (candbit[1] >> 12) & 0x1;
55 
57  hfbc.setHwPt(hfbitcount);
59  LogDebug("L1T") << "hfbc pT " << hfbc.hwPt();
60  resHFBitCounts_->push_back(bx, hfbc);
61 
63  hfrs.setHwPt(hfringsum);
65  LogDebug("L1T") << "hfrs pT " << hfrs.hwPt();
66  resHFRingSums_->push_back(bx, hfrs);
67 
69  mht.setHwPt(htmiss);
70  mht.setHwPhi(htmissphi);
71  int flaghtmiss = mht.hwQual();
72  flaghtmiss |= overflowhtmiss;
73  mht.setHwQual(flaghtmiss);
74  LogDebug("L1T") << "MHT: pT " << mht.hwPt() << "is overflow " << overflowhtmiss << std::endl;
75  reset_->push_back(bx, mht);
76  }
77 
78  return true;
79  }
80  } // namespace stage1
81 } // namespace l1t
82 
constexpr int32_t ceil(float num)
delete x;
Definition: CaloConfig.h:22
void setType(CaloSpareType type)
Definition: CaloSpare.cc:11
bool unpack(const Block &block, UnpackerCollections *coll) override
int hwPt() const
Definition: L1Candidate.h:35
void setHwPt(int pt)
Definition: L1Candidate.h:28
#define DEFINE_L1T_UNPACKER(type)
#define LogDebug(id)