Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-07 04:36:13

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