test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PhysCandPacker.cc
Go to the documentation of this file.
2 
4 
5 #include "CaloTokens.h"
6 
7 template<typename T, typename F>
9 process(unsigned int id1, unsigned int id2, const BXVector<T>& coll, F filter)
10 {
11  std::vector<uint32_t> load[2];
12 
13  for (int i = coll.getFirstBX(); i <= coll.getLastBX(); ++i) {
14  uint16_t jetbit[4] = {0, 0, 0, 0};
15  int n = 0;
16  for (auto j = coll.begin(i); j != coll.end(i) && n < 4; ++j) {
17  if (!filter(*j))
18  continue;
19  //std::cout << j->hwPt() << " @ " << j->hwEta() << ", " << j->hwPhi() << " > " << j->hwQual() << " > " << j->hwIso() << std::endl;
20  jetbit[n++] = std::min(j->hwPt(), 0x3F) |
21  (abs(j->hwEta()) & 0x7) << 6 |
22  ((j->hwEta() >> 3) & 0x1) << 9 |
23  (j->hwPhi() & 0x1F) << 10;
24  }
25  uint32_t word0=(jetbit[0] & 0xFFFF);
26  uint32_t word1=(jetbit[1] & 0xFFFF);
27  uint32_t word2=(jetbit[2] & 0xFFFF);
28  uint32_t word3=(jetbit[3] & 0xFFFF);
29 
30  load[0].push_back(word0);
31  load[0].push_back(word2);
32 
33  load[1].push_back(word1);
34  load[1].push_back(word3);
35 
36  }
37 
38  return {l1t::Block(id1, load[0]),l1t::Block(id2, load[1])};
39 }
40 
41 namespace l1t {
42  namespace stage1 {
43  class IsoEGammaPacker : public Packer {
44  public:
45  virtual Blocks pack(const edm::Event&, const PackerTokens*) override;
46  };
47 
48  class NonIsoEGammaPacker : public Packer {
49  public:
50  virtual Blocks pack(const edm::Event&, const PackerTokens*) override;
51  };
52 
53  class CentralJetPacker : public Packer {
54  public:
55  virtual Blocks pack(const edm::Event&, const PackerTokens*) override;
56  };
57 
58  class ForwardJetPacker : public Packer {
59  public:
60  virtual Blocks pack(const edm::Event&, const PackerTokens*) override;
61  };
62 
63  class TauPacker : public Packer {
64  public:
65  virtual Blocks pack(const edm::Event&, const PackerTokens*) override;
66  };
67 
68  class IsoTauPacker : public Packer {
69  public:
70  virtual Blocks pack(const edm::Event&, const PackerTokens*) override;
71  };
72  }
73 }
74 
75 // Implementation
76 
77 namespace l1t {
78  namespace stage1 {
79  Blocks
81  {
83  event.getByToken(static_cast<const CaloTokens*>(toks)->getEGammaToken(), egammas);
84 
85  return process(85,87, *egammas, [](const l1t::EGamma& eg) -> bool { return eg.hwIso() == 1; });
86  }
87 
88  Blocks
90  {
92  event.getByToken(static_cast<const CaloTokens*>(toks)->getEGammaToken(), egammas);
93 
94  return process(89,91, *egammas, [](const l1t::EGamma& eg) -> bool { return eg.hwIso() == 0; });
95  }
96 
97  Blocks
99  {
101  event.getByToken(static_cast<const CaloTokens*>(toks)->getJetToken(), jets);
102 
103  return process(77,79, *jets, [](const l1t::Jet& jet) -> bool { return !(jet.hwQual() & 2); });
104  }
105 
106  Blocks
108  {
110  event.getByToken(static_cast<const CaloTokens*>(toks)->getJetToken(), jets);
111 
112  return process(81,83, *jets, [](const l1t::Jet& jet) -> bool { return jet.hwQual() & 2; });
113  }
114 
115  Blocks
117  {
119  event.getByToken(static_cast<const CaloTokens*>(toks)->getTauToken(), taus);
120 
121  return process(101,103, *taus, [](const l1t::Tau& tau) -> bool { return true; });
122  }
123 
124  Blocks
126  {
128  event.getByToken(static_cast<const CaloTokens*>(toks)->getIsoTauToken(), taus);
129 
130  return process(105,107, *taus, [](const l1t::Tau& tau) -> bool { return true; });
131  }
132  }
133 }
134 
const_iterator end(int bx) const
int i
Definition: DBlmapReader.cc:9
Definition: Tau.h:16
virtual Blocks pack(const edm::Event &, const PackerTokens *) override
int hwIso() const
Definition: L1Candidate.cc:84
Definition: Jet.h:16
virtual Blocks pack(const edm::Event &, const PackerTokens *) override
vector< PseudoJet > jets
def load
Definition: svgfig.py:546
std::vector< Block > Blocks
Definition: Block.h:68
virtual Blocks pack(const edm::Event &, const PackerTokens *) override
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
int hwQual() const
Definition: L1Candidate.cc:89
int getFirstBX() const
JetCorrectorParametersCollection coll
Definition: classes.h:10
virtual Blocks pack(const edm::Event &, const PackerTokens *) override
virtual Blocks pack(const edm::Event &, const PackerTokens *) override
int getLastBX() const
static uInt32 F(BLOWFISH_CTX *ctx, uInt32 x)
Definition: blowfish.cc:281
tuple process
Definition: LaserDQM_cfg.py:3
const_iterator begin(int bx) const
#define DEFINE_L1T_PACKER(type)
Definition: Packer.h:36
virtual Blocks pack(const edm::Event &, const PackerTokens *) override