Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:00:00

0001 #ifndef L1T_PACKER_STAGE1_RCTUNPACKER_H
0002 #define L1T_PACKER_STAGE1_RCTUNPACKER_H
0003 
0004 #include "EventFilter/L1TRawToDigi/interface/Unpacker.h"
0005 
0006 namespace l1t {
0007   namespace stage1 {
0008     class RCTEmRegionUnpacker : public Unpacker {
0009     public:
0010       bool unpack(const Block& block, UnpackerCollections* coll) override;
0011 
0012     private:
0013       unsigned int counter_ = 0;
0014     };
0015   }  // namespace stage1
0016 }  // namespace l1t
0017 
0018 #endif