CMS 3D CMS Logo

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