CMS 3D CMS Logo

TauPacker.cc
Go to the documentation of this file.
3 
4 #include "CaloTokens.h"
5 
7 #include "TauPacker.h"
8 
9 namespace l1t {
10  namespace stage2 {
13  event.getByToken(static_cast<const CommonTokens*>(toks)->getTauToken(), taus);
14 
15  std::vector<uint32_t> load1, load2;
16 
17  int nBx = 0;
18  for (int i = taus->getFirstBX(); i <= taus->getLastBX(); ++i) {
19  for (auto j = taus->begin(i); j != taus->end(i); ++j) {
20  uint32_t packed_eta = abs(j->hwEta()) & 0x7F;
21  if (j->hwEta() < 0) {
22  packed_eta = (128 - packed_eta) | 1 << 7;
23  }
24 
25  uint32_t word = std::min(j->hwPt(), 0x1FF) | packed_eta << 9 | (j->hwPhi() & 0xFF) << 17 |
26  (j->hwIso() & 0x3) << 25 | //two bits for tau isolation
27  (j->hwQual() & 0x7) << 27;
28 
29  // Depending on the number, push onto appropriate link
31  load1.push_back(word);
32  else
33  load2.push_back(word);
34  }
35 
36  // push zeroes if not enough taus must do this for each BX and each link
37  while (load1.size() - nBx * l1t::stage2::layer2::demux::nOutputFramePerBX <
39  load1.push_back(0);
40  while (load2.size() - nBx * l1t::stage2::layer2::demux::nOutputFramePerBX <
42  load2.push_back(0);
43 
44  nBx++;
45  }
46 
47  return {Block(b1_, load1), Block(b2_, load2)};
48  }
49  } // namespace stage2
50 } // namespace l1t
51 
delete x;
Definition: CaloConfig.h:22
uint64_t word
Blocks pack(const edm::Event &, const PackerTokens *) override
Definition: TauPacker.cc:11
std::vector< Block > Blocks
Definition: Block.h:99
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
#define DEFINE_L1T_PACKER(type)
Definition: PackerFactory.h:23
Definition: event.py:1