/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/RPCMonitorClient/interface/RPCNameHelper.h
17 строк
461 B
Junghwan John Goh
apply the standard code style
26 май 2021, 21:54
26 май 2021, 21:54
dcab5a3
Код
Авторство
О чём код?
#ifndef RPCNameHelper_H #define RPCNameHelper_H #include "DataFormats/MuonDetId/interface/RPCDetId.h" #include <string> #include <array> struct RPCNameHelper { static std::string name(const RPCDetId& detId, const bool useRoll); static std::string chamberName(const RPCDetId& detId); static std::string rollName(const RPCDetId& detId); static std::string regionName(const int region); static const std::array<std::string, 3> regionNames; }; #endif