Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef RecoLocalMuon_RPCRecHit_DTObjectMap_h
0002 #define RecoLocalMuon_RPCRecHit_DTObjectMap_h
0003 
0004 #include "DataFormats/MuonDetId/interface/RPCDetId.h"
0005 #include "DTStationIndex.h"
0006 #include "Geometry/RPCGeometry/interface/RPCGeometry.h"
0007 
0008 #include <set>
0009 #include <map>
0010 
0011 class DTObjectMap {
0012 public:
0013   DTObjectMap(RPCGeometry const& rpcGeometry);
0014 
0015   std::set<RPCDetId> const& getRolls(DTStationIndex index) const;
0016 
0017 private:
0018   std::map<DTStationIndex, std::set<RPCDetId>> rollstore;
0019 };
0020 
0021 #endif  // RecoLocalMuon_RPCRecHit_DTObjectMap_h