Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DataFormats_ME0SegmentCollection_H
0002 #define DataFormats_ME0SegmentCollection_H
0003 
0004 /** \class ME0SegmentCollection
0005  *
0006  * The collection of ME0Segment's. See \ref CSCSegmentCollection.h for details from which is derived.
0007  *
0008  *  $Date: 2014/02/04 10:08:15 $
0009  *  \author Marcello Maggi
0010  */
0011 
0012 #include "DataFormats/MuonDetId/interface/ME0DetId.h"
0013 #include "DataFormats/GEMRecHit/interface/ME0Segment.h"
0014 
0015 #include "DataFormats/Common/interface/RangeMap.h"
0016 #include "DataFormats/Common/interface/ClonePolicy.h"
0017 #include "DataFormats/Common/interface/OwnVector.h"
0018 
0019 typedef edm::RangeMap<ME0DetId, edm::OwnVector<ME0Segment> > ME0SegmentCollection;
0020 
0021 #include "DataFormats/Common/interface/Ref.h"
0022 typedef edm::Ref<ME0SegmentCollection> ME0SegmentRef;
0023 
0024 #endif