CMS 3D CMS Logo

JetUnpacker.h
Go to the documentation of this file.
1 #ifndef L1T_PACKER_STAGE2_JETUNPACKER_H
2 #define L1T_PACKER_STAGE2_JETUNPACKER_H
3 
5 
6 namespace l1t {
7  namespace stage2 {
8  class JetUnpacker : public Unpacker {
9  public:
10  JetUnpacker();
11  ~JetUnpacker() override{};
12 
13  bool unpack(const Block& block, UnpackerCollections* coll) override;
14 
15  inline void setJetCopy(const unsigned int copy) { JetCopy_ = copy; };
16 
17  private:
18  unsigned int JetCopy_;
19  };
20  } // namespace stage2
21 } // namespace l1t
22 
23 #endif
void setJetCopy(const unsigned int copy)
Definition: JetUnpacker.h:15
delete x;
Definition: CaloConfig.h:22
bool unpack(const Block &block, UnpackerCollections *coll) override
Definition: JetUnpacker.cc:15