12 int nBX, firstBX, lastBX;
17 res_->setBXRange(firstBX, lastBX);
19 LogDebug(
"L1T") <<
"nBX = " << nBX <<
" first BX = " << firstBX <<
" lastBX = " << lastBX;
25 for (
int bx = firstBX;
bx <= lastBX;
bx++) {
28 uint32_t raw_data0 = block.
payload()[i++];
29 uint32_t raw_data1 = block.
payload()[i++];
34 candbit[0] = raw_data0 & 0xFFFF;
35 candbit[1] = raw_data1 & 0xFFFF;
37 int etmiss = candbit[0] & 0xFFF;
38 int overflowetmiss = (candbit[0] >> 12) & 0x1;
39 int etmissphi = candbit[1] & 0x7F;
45 int flagetmiss = met.
hwQual();
46 flagetmiss |= overflowetmiss;
48 LogDebug(
"L1T") <<
"MET: pT " << met.
hwPt() <<
"is overflow " << overflowetmiss << std::endl;
49 res_->set(
bx, 0, met);
constexpr int32_t ceil(float num)
const std::vector< uint32_t > & payload() const
void getBXRange(int nbx, int &first, int &last)
bool unpack(const Block &block, UnpackerCollections *coll) override
BlockHeader header() const
void setType(EtSumType type)
#define DEFINE_L1T_UNPACKER(type)