/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/RPCObjects/interface/RPCInverseLBLinkMap.h
29 строк
751 B
Cms Build
Clang-Format
24 май 2019, 00:14
24 май 2019, 00:14
ecf11e6
Код
Авторство
О чём код?
#ifndef CondFormats_RPCObjects_RPCInverseLBLinkMap_h #define CondFormats_RPCObjects_RPCInverseLBLinkMap_h #include <cstdint> #include <map> #include "CondFormats/RPCObjects/interface/RPCLBLink.h" #include "CondFormats/RPCObjects/interface/RPCFebConnector.h" class RPCInverseLBLinkMap { public: typedef std::multimap<std::uint32_t, std::pair<RPCLBLink, RPCFebConnector> > map_type; public: RPCInverseLBLinkMap(); map_type& getMap(); map_type const& getMap() const; protected: map_type map_; }; inline RPCInverseLBLinkMap::map_type& RPCInverseLBLinkMap::getMap() { return map_; } inline RPCInverseLBLinkMap::map_type const& RPCInverseLBLinkMap::getMap() const { return map_; } #endif // CondFormats_RPCObjects_RPCInverseLBLinkMap_h