Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DataFormats_GEMRecHitCollection_H
0002 #define DataFormats_GEMRecHitCollection_H
0003 
0004 /** \class GEMRecHitCollection
0005  *  Collection of GEMRecHit for storage in the event
0006  *
0007  *  \author M. Maggi - INFN Bari
0008  */
0009 
0010 #include "DataFormats/MuonDetId/interface/GEMDetId.h"
0011 #include "DataFormats/GEMRecHit/interface/GEMRecHit.h"
0012 #include "DataFormats/Common/interface/RangeMap.h"
0013 #include "DataFormats/Common/interface/ClonePolicy.h"
0014 #include "DataFormats/Common/interface/OwnVector.h"
0015 #include <functional>
0016 
0017 typedef edm::RangeMap<GEMDetId, edm::OwnVector<GEMRecHit, edm::ClonePolicy<GEMRecHit> >, edm::ClonePolicy<GEMRecHit> >
0018     GEMRecHitCollection;
0019 
0020 #endif