CMS 3D CMS Logo

RPCInverseLBLinkMap.h
Go to the documentation of this file.
1 #ifndef CondFormats_RPCObjects_RPCInverseLBLinkMap_h
2 #define CondFormats_RPCObjects_RPCInverseLBLinkMap_h
3 
4 #include <cstdint>
5 
6 #include <map>
7 
10 
12 {
13 public:
14  typedef std::multimap<std::uint32_t, std::pair<RPCLBLink, RPCFebConnector> > map_type;
15 
16 public:
18 
19  map_type & getMap();
20  map_type const & getMap() const;
21 
22 protected:
23  map_type map_;
24 };
25 
27 {
28  return map_;
29 }
30 
32 {
33  return map_;
34 }
35 
36 #endif // CondFormats_RPCObjects_RPCInverseLBLinkMap_h
std::multimap< std::uint32_t, std::pair< RPCLBLink, RPCFebConnector > > map_type