CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CaloSpareHFUnpacker.cc
Go to the documentation of this file.
2 
4 
5 #include "CaloCollections.h"
6 
7 namespace l1t {
8  namespace stage1 {
9  class CaloSpareHFUnpacker : public Unpacker {
10  public:
11  virtual bool unpack(const Block& block, UnpackerCollections *coll) override;
12  };
13  }
14 }
15 
16 // Implementation
17 
18 namespace l1t {
19  namespace stage1 {
20  bool
22  {
23 
24  LogDebug("L1T") << "Block ID = " << block.header().getID() << " size = " << block.header().getSize();
25 
26  int nBX, firstBX, lastBX;
27  nBX = int(ceil(block.header().getSize() / 2.));
28  getBXRange(nBX, firstBX, lastBX);
29 
30  auto resHFBitCounts_ = static_cast<CaloCollections*>(coll)->getCaloSpareHFBitCounts();
31  resHFBitCounts_->setBXRange(firstBX, lastBX);
32 
33  auto resHFRingSums_ = static_cast<CaloCollections*>(coll)->getCaloSpareHFRingSums();
34  resHFRingSums_->setBXRange(firstBX, lastBX);
35 
36  LogDebug("L1T") << "nBX = " << nBX << " first BX = " << firstBX << " lastBX = " << lastBX;
37 
38  // Initialise index
39  int unsigned i = 0;
40 
41  // Loop over multiple BX and then number of jets filling jet collection
42  for (int bx=firstBX; bx<=lastBX; bx++){
43  uint32_t raw_data0 = block.payload()[i++];
44  uint32_t raw_data1 = block.payload()[i++];
45 
46  /* if (raw_data0 == 0 || raw_data1==0) continue; */
47 
48  uint16_t candbit[2];
49  candbit[0] = raw_data0 & 0xFFFF;
50  candbit[1] = raw_data1 & 0xFFFF;
51 
52  int hfbitcount=candbit[0] & 0xFFF;
53  int hfringsum=((candbit[0]>>12) & 0x7) | ((candbit[1] & 0x1FF) << 3);
54 
56  hfbc.setHwPt(hfbitcount);
58  LogDebug("L1T") << "hfbc pT " << hfbc.hwPt();
59  resHFBitCounts_->push_back(bx,hfbc);
60 
62  hfrs.setHwPt(hfringsum);
64  LogDebug("L1T") << "hfrs pT " << hfrs.hwPt();
65  resHFRingSums_->push_back(bx,hfrs);
66 
67  }
68 
69  return true;
70 
71  }
72  }
73 }
74 
#define LogDebug(id)
int i
Definition: DBlmapReader.cc:9
unsigned int getID() const
Definition: Block.h:22
void getBXRange(int nbx, int &first, int &last)
Definition: Unpacker.cc:12
BlockHeader header() const
Definition: Block.h:56
std::vector< uint32_t > payload() const
Definition: Block.h:57
#define DEFINE_L1T_UNPACKER(type)
Definition: Unpacker.h:31
void setType(CaloSpareType type)
Definition: CaloSpare.cc:32
virtual bool unpack(const Block &block, UnpackerCollections *coll) override
JetCorrectorParametersCollection coll
Definition: classes.h:10
int hwPt() const
Definition: L1Candidate.cc:69
void setHwPt(int pt)
Definition: L1Candidate.cc:44
unsigned int getSize() const
Definition: Block.h:23