CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
MissEtUnpacker.cc
Go to the documentation of this file.
3 
4 #include "CaloCollections.h"
5 #include "MissEtUnpacker.h"
6 
7 namespace l1t {
8  namespace stage1 {
10  LogDebug("L1T") << "Block ID = " << block.header().getID() << " size = " << block.header().getSize();
11 
12  int nBX, firstBX, lastBX;
13  nBX = int(ceil(block.header().getSize() / 2.));
14  getBXRange(nBX, firstBX, lastBX);
15 
16  auto res_ = static_cast<CaloCollections*>(coll)->getEtSums();
17  res_->setBXRange(firstBX, lastBX);
18 
19  LogDebug("L1T") << "nBX = " << nBX << " first BX = " << firstBX << " lastBX = " << lastBX;
20 
21  // Initialise index
22  int unsigned i = 0;
23 
24  // Loop over multiple BX and then number of jets filling jet collection
25  for (int bx = firstBX; bx <= lastBX; bx++) {
26  res_->resize(bx, 4);
27 
28  uint32_t raw_data0 = block.payload()[i++];
29  uint32_t raw_data1 = block.payload()[i++];
30 
31  /* if (raw_data0 == 0 || raw_data1==0) continue; */
32 
33  uint16_t candbit[2];
34  candbit[0] = raw_data0 & 0xFFFF;
35  candbit[1] = raw_data1 & 0xFFFF;
36 
37  int etmiss = candbit[0] & 0xFFF;
38  int overflowetmiss = (candbit[0] >> 12) & 0x1;
39  int etmissphi = candbit[1] & 0x7F;
40 
42  met.setHwPt(etmiss);
43  met.setHwPhi(etmissphi);
45  int flagetmiss = met.hwQual();
46  flagetmiss |= overflowetmiss;
47  met.setHwQual(flagetmiss);
48  LogDebug("L1T") << "MET: pT " << met.hwPt() << "is overflow " << overflowetmiss << std::endl;
49  res_->set(bx, 0, met);
50  }
51 
52  return true;
53  }
54  } // namespace stage1
55 } // namespace l1t
56 
constexpr int32_t ceil(float num)
const std::vector< uint32_t > & payload() const
Definition: Block.h:86
unsigned int getID() const
Definition: Block.h:43
void getBXRange(int nbx, int &first, int &last)
bool unpack(const Block &block, UnpackerCollections *coll) override
BlockHeader header() const
Definition: Block.h:85
void setHwQual(int qual)
Definition: L1Candidate.h:31
void setType(EtSumType type)
Definition: EtSum.cc:11
int hwQual() const
Definition: L1Candidate.h:38
void setHwPhi(int phi)
Definition: L1Candidate.h:30
int hwPt() const
Definition: L1Candidate.h:35
void setHwPt(int pt)
Definition: L1Candidate.h:28
#define DEFINE_L1T_UNPACKER(type)
unsigned int getSize() const
Definition: Block.h:44
#define LogDebug(id)