Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DataFormats_GEMSegmentCollection_H
0002 #define DataFormats_GEMSegmentCollection_H
0003 
0004 /** \class GEMSegmentCollection
0005  *
0006  * The collection of GEMSegment's. See \ref CSCSegmentCollection.h for details from which is derived.
0007  *
0008  *  \author Piet Verwilligen
0009  */
0010 
0011 #include "DataFormats/MuonDetId/interface/GEMDetId.h"
0012 #include "DataFormats/GEMRecHit/interface/GEMSegment.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<GEMSegment> > GEMSegmentCollection;
0019 
0020 #include "DataFormats/Common/interface/Ref.h"
0021 typedef edm::Ref<GEMSegmentCollection> GEMSegmentRef;
0022 
0023 #endif