CMS 3D CMS Logo

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