CMS 3D CMS Logo

MuonPacker.h
Go to the documentation of this file.
1 #ifndef L1T_PACKER_STAGE2_MUONPACKER_H
2 #define L1T_PACKER_STAGE2_MUONPACKER_H
3 
4 #include <map>
6 
7 namespace l1t {
8  namespace stage2 {
9  class MuonPacker : public Packer {
10  public:
11  MuonPacker(unsigned b1) : b1_(b1) {}
12  Blocks pack(const edm::Event&, const PackerTokens*) override;
13  unsigned b1_;
14  private:
15  typedef std::map<unsigned int, std::vector<uint32_t>> PayloadMap;
16  };
17 
18  class GTMuonPacker : public MuonPacker {
19  public:
21  };
22  class GMTMuonPacker : public MuonPacker {
23  public:
25  };
26  }
27 }
28 
29 #endif
std::map< unsigned int, std::vector< uint32_t > > PayloadMap
Definition: MuonPacker.h:15
delete x;
Definition: CaloConfig.h:22
MuonPacker(unsigned b1)
Definition: MuonPacker.h:11
Blocks pack(const edm::Event &, const PackerTokens *) override
Definition: MuonPacker.cc:11
std::vector< Block > Blocks
Definition: Block.h:72