1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef CondFormats_RPCObjects_RPCInverseAMCLinkMap_h
#define CondFormats_RPCObjects_RPCInverseAMCLinkMap_h
#include <map>
#include "CondFormats/RPCObjects/interface/RPCAMCLink.h"
#include "CondFormats/RPCObjects/interface/RPCLBLink.h"
class RPCInverseAMCLinkMap {
public:
typedef std::multimap<RPCLBLink, RPCAMCLink> map_type;
public:
RPCInverseAMCLinkMap();
map_type& getMap();
map_type const& getMap() const;
protected:
map_type map_;
};
inline RPCInverseAMCLinkMap::map_type& RPCInverseAMCLinkMap::getMap() { return map_; }
inline RPCInverseAMCLinkMap::map_type const& RPCInverseAMCLinkMap::getMap() const { return map_; }
#endif // CondFormats_RPCObjects_RPCInverseAMCLinkMap_h
|