CMS 3D CMS Logo

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