CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
l1t::stage1::CaloSpareHFUnpacker Class Reference
Inheritance diagram for l1t::stage1::CaloSpareHFUnpacker:
l1t::Unpacker

Public Member Functions

virtual bool unpack (const Block &block, UnpackerCollections *coll) override
 

Detailed Description

Definition at line 9 of file CaloSpareHFUnpacker.cc.

Member Function Documentation

bool l1t::stage1::CaloSpareHFUnpacker::unpack ( const Block block,
UnpackerCollections coll 
)
overridevirtual

Implements l1t::Unpacker.

Definition at line 21 of file CaloSpareHFUnpacker.cc.

References coll, l1t::getBXRange(), l1t::BlockHeader::getID(), l1t::BlockHeader::getSize(), l1t::Block::header(), l1t::CaloSpare::HFBitCount, l1t::CaloSpare::HFRingSum, l1t::L1Candidate::hwPt(), i, LogDebug, l1t::Block::payload(), l1t::L1Candidate::setHwPt(), and l1t::CaloSpare::setType().

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  }
#define LogDebug(id)
int i
Definition: DBlmapReader.cc:9
void getBXRange(int nbx, int &first, int &last)
Definition: Unpacker.cc:12
void setType(CaloSpareType type)
Definition: CaloSpare.cc:32
JetCorrectorParametersCollection coll
Definition: classes.h:10
int hwPt() const
Definition: L1Candidate.cc:69
void setHwPt(int pt)
Definition: L1Candidate.cc:44