CMS 3D CMS Logo

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