Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-03-05 03:13:49

0001 #ifndef DataFormats_GEMDigi_ME0StubCollection_H
0002 #define DataFormats_GEMDigi_ME0StubCollection_H
0003 
0004 /** \class ME0StubCollection
0005  *
0006  * The collection of ME0Stub's. See \ref CSCSegmentCollection.h for details from which is derived.
0007  *
0008  *  \author Woohyeon Heo
0009  */
0010 
0011 #include "DataFormats/MuonDetId/interface/GEMDetId.h"
0012 #include "DataFormats/GEMDigi/interface/ME0Stub.h"
0013 
0014 #include "DataFormats/Common/interface/RangeMap.h"
0015 #include "DataFormats/Common/interface/ClonePolicy.h"
0016 #include "DataFormats/Common/interface/OwnVector.h"
0017 
0018 typedef edm::RangeMap<GEMDetId, edm::OwnVector<ME0Stub> > ME0StubCollection;
0019 
0020 #include "DataFormats/Common/interface/Ref.h"
0021 typedef edm::Ref<ME0StubCollection> ME0StubRef;
0022 
0023 #endif