Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:51

0001 #ifndef L1T_PACKER_STAGE2_ETSUMUNPACKER_H
0002 #define L1T_PACKER_STAGE2_ETSUMUNPACKER_H
0003 
0004 #include "EventFilter/L1TRawToDigi/interface/Unpacker.h"
0005 
0006 namespace l1t {
0007   namespace stage2 {
0008     class EtSumUnpacker : public Unpacker {
0009     public:
0010       EtSumUnpacker();
0011       ~EtSumUnpacker() override{};
0012 
0013       bool unpack(const Block& block, UnpackerCollections* coll) override;
0014 
0015       virtual inline void setEtSumCopy(const unsigned int copy) { EtSumCopy_ = copy; };
0016 
0017     private:
0018       unsigned int EtSumCopy_;
0019     };
0020   }  // namespace stage2
0021 }  // namespace l1t
0022 
0023 #endif