test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TauPacker.cc
Go to the documentation of this file.
2 
4 
5 #include "CaloTokens.h"
6 
8 
9 namespace l1t {
10  namespace stage2 {
11  class TauPacker : public Packer {
12  public:
13  TauPacker(int b1, int b2) : b1_(b1), b2_(b2) {}
14  virtual Blocks pack(const edm::Event&, const PackerTokens*) override;
15  int b1_, b2_;
16  };
17 
18  class GTTauPacker : public TauPacker {
19  public:
20  GTTauPacker() : TauPacker(16,18) {}
21  };
22  class CaloTauPacker : public TauPacker {
23  public:
24  CaloTauPacker() : TauPacker(17,19) {}
25  };
26 
27  }
28 }
29 
30 // Implementation
31 
32 namespace l1t {
33 namespace stage2 {
34  Blocks
36  {
38  event.getByToken(static_cast<const CommonTokens*>(toks)->getTauToken(), taus);
39 
40  std::vector<uint32_t> load1, load2;
41 
42  for (int i = taus->getFirstBX(); i <= taus->getLastBX(); ++i) {
43 
44  for (auto j = taus->begin(i); j != taus->end(i); ++j) {
45 
46  uint32_t packed_eta = abs(j->hwEta()) & 0x7F;
47  if (j->hwEta() < 0){
48  packed_eta = (128 - packed_eta) | 1<<7;
49  }
50 
51  uint32_t word = \
52  std::min(j->hwPt(), 0x1FF) |
53  packed_eta << 9 |
54  (j->hwPhi() & 0xFF) << 17 |
55  (j->hwIso() & 0x1) << 25 |
56  (j->hwQual() & 0x7) << 26;
57 
58  if (load1.size() < l1t::stage2::layer2::demux::nEGPerLink) load1.push_back(word);
59  else load2.push_back(word);
60 
61  }
62  }
63 
64  // push zeroes if jets are missing
65  while (load1.size()<l1t::stage2::layer2::demux::nOutputFramePerBX) load1.push_back(0);
66  while (load2.size()<l1t::stage2::layer2::demux::nOutputFramePerBX) load2.push_back(0);
67 
68  return {Block(b1_, load1), Block(b2_, load2)};
69 
70  }
71 }
72 }
73 
int i
Definition: DBlmapReader.cc:9
virtual Blocks pack(const edm::Event &, const PackerTokens *) override
Definition: TauPacker.cc:35
std::vector< Block > Blocks
Definition: Block.h:68
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
int j
Definition: DBlmapReader.cc:9
T min(T a, T b)
Definition: MathUtil.h:58
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
TauPacker(int b1, int b2)
Definition: TauPacker.cc:13
#define DEFINE_L1T_PACKER(type)
Definition: Packer.h:36