CMS 3D CMS Logo

DTObjectMap.h
Go to the documentation of this file.
1 #ifndef RecoLocalMuon_RPCRecHit_DTObjectMap_h
2 #define RecoLocalMuon_RPCRecHit_DTObjectMap_h
3 
5 #include "DTStationIndex.h"
7 
8 #include <set>
9 #include <map>
10 
11 class DTObjectMap {
12 public:
13  DTObjectMap(RPCGeometry const& rpcGeometry);
14 
15  std::set<RPCDetId> const& getRolls(DTStationIndex index) const;
16 
17 private:
18  std::map<DTStationIndex, std::set<RPCDetId>> rollstore;
19 };
20 
21 #endif // RecoLocalMuon_RPCRecHit_DTObjectMap_h
DTObjectMap(RPCGeometry const &rpcGeometry)
Definition: DTObjectMap.cc:12
std::set< RPCDetId > const & getRolls(DTStationIndex index) const
Definition: DTObjectMap.cc:36
std::map< DTStationIndex, std::set< RPCDetId > > rollstore
Definition: DTObjectMap.h:18