CMS 3D CMS Logo

TauPacker.h
Go to the documentation of this file.
1 #ifndef L1T_PACKER_STAGE2_TAUPACKER_H
2 #define L1T_PACKER_STAGE2_TAUPACKER_H
3 
5 
6 namespace l1t {
7  namespace stage2 {
8  class TauPacker : public Packer {
9  public:
10  TauPacker(int b1, int b2) : b1_(b1), b2_(b2) {}
11  Blocks pack(const edm::Event&, const PackerTokens*) override;
12  int b1_, b2_;
13  };
14 
15  class GTTauPacker : public TauPacker {
16  public:
17  GTTauPacker() : TauPacker(16, 18) {}
18  };
19  class CaloTauPacker : public TauPacker {
20  public:
21  CaloTauPacker() : TauPacker(17, 19) {}
22  };
23 
24  } // namespace stage2
25 } // namespace l1t
26 
27 #endif
weight_default_t b1[25]
Definition: b1.h:9
delete x;
Definition: CaloConfig.h:22
Blocks pack(const edm::Event &, const PackerTokens *) override
Definition: TauPacker.cc:11
std::vector< Block > Blocks
Definition: Block.h:99
weight_default_t b2[10]
Definition: b2.h:9
TauPacker(int b1, int b2)
Definition: TauPacker.h:10