Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef EventFilter_L1TRawToDigi_UnpackerCollections_h
0002 #define EventFilter_L1TRawToDigi_UnpackerCollections_h
0003 
0004 namespace edm {
0005   class Event;
0006 }
0007 
0008 namespace l1t {
0009   class UnpackerCollections {
0010   public:
0011     UnpackerCollections(edm::Event& e) : event_(e) {}
0012     virtual ~UnpackerCollections() {}
0013 
0014   protected:
0015     edm::Event& event_;
0016   };
0017 }  // namespace l1t
0018 
0019 #endif