/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoLocalMuon/RPCRecHit/plugins/DTObjectMap.h
21 строка
526 B
Shahzad Malik Muzaffar
[Reco] Fixes needed to avoid exposing private headers via interface dir
17 авг 2021, 19:18
17 авг 2021, 19:18
f613a65
Код
Авторство
О чём код?
#ifndef RecoLocalMuon_RPCRecHit_DTObjectMap_h #define RecoLocalMuon_RPCRecHit_DTObjectMap_h #include "DataFormats/MuonDetId/interface/RPCDetId.h" #include "DTStationIndex.h" #include "Geometry/RPCGeometry/interface/RPCGeometry.h" #include <set> #include <map> class DTObjectMap { public: DTObjectMap(RPCGeometry const& rpcGeometry); std::set<RPCDetId> const& getRolls(DTStationIndex index) const; private: std::map<DTStationIndex, std::set<RPCDetId>> rollstore; }; #endif // RecoLocalMuon_RPCRecHit_DTObjectMap_h