CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTObjectMap.h
Go to the documentation of this file.
1 #ifndef RecoLocalMuon_RPCRecHit_DTObjectMap_h
2 #define RecoLocalMuon_RPCRecHit_DTObjectMap_h
3 
8 
9 #include <set>
10 #include <map>
11 
12 class DTObjectMap {
13 public:
15 
16  std::set<RPCDetId> const & getRolls(DTStationIndex index) const;
17 
18 private:
19  std::map<DTStationIndex, std::set<RPCDetId>> rollstore;
20 };
21 
22 #endif // RecoLocalMuon_RPCRecHit_DTObjectMap_h
JetCorrectorParameters::Record record
Definition: classes.h:7
std::set< RPCDetId > const & getRolls(DTStationIndex index) const
Definition: DTObjectMap.cc:43
DTObjectMap(MuonGeometryRecord const &record)
Definition: DTObjectMap.cc:13
std::map< DTStationIndex, std::set< RPCDetId > > rollstore
Definition: DTObjectMap.h:19