11 event.getByToken(static_cast<const CaloTokens*>(toks)->getEtSumToken(), etSums);
14 event.getByToken(static_cast<const CaloTokens*>(toks)->getCaloSpareHFBitCountsToken(), calosparesHFBitCounts);
17 event.getByToken(static_cast<const CaloTokens*>(toks)->getCaloSpareHFRingSumsToken(), calosparesHFRingSums);
19 std::vector<uint32_t>
load;
21 for (
int i = etSums->getFirstBX();
i <= etSums->getLastBX(); ++
i) {
31 for (
auto j = etSums->begin(
i);
j != etSums->end(
i) &&
n < 4; ++
j, ++
n) {
33 flaghtmiss =
j->hwQual() & 0x1;
41 for (
auto j = calosparesHFBitCounts->begin(
i);
j != calosparesHFBitCounts->end(
i) &&
n < 2; ++
j, ++
n) {
47 for (
auto j = calosparesHFRingSums->begin(
i);
j != calosparesHFRingSums->end(
i) &&
n < 2; ++
j, ++
n) {
51 uint16_t
object[4] = {0, 0, 0, 0};
53 object[0] = hfbitcount | ((hfringsum & 0x7) << 12);
54 object[1] = htmissphi | ((
htmiss & 0x7F) << 5) | (flaghtmiss << 12) | (0x1 << 14);
55 object[2] = ((hfringsum >> 3) & 0x1FF) | (0x1) << 10 | (0x1) << 12 | (0x1) << 14;
56 object[3] = 0x1 | (0x1 << 2) | (0x1 << 4) | (0x1 << 6) | (0x1 << 8) | (0x1 << 10) | (0x1 << 12) | (0x1 << 14);
58 uint32_t word0 = (
object[0] & 0xFFFF) | ((
object[1] & 0xFFFF) << 16);
59 uint32_t word1 = (
object[2] & 0xFFFF) | ((
object[3] & 0xFFFF) << 16);
61 word0 |= (1 << 31) | (1 << 15);
62 word1 |= ((
i == 0) << 31) | ((
i == 0) << 15);
64 load.push_back(word0);
65 load.push_back(word1);
std::vector< Block > Blocks
Blocks pack(const edm::Event &, const PackerTokens *) override
#define DEFINE_L1T_PACKER(type)