/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/RPCMonitorClient/interface/RPCSummaryMapHisto.h
18 строк
711 B
Junghwan John Goh
apply the standard code style
26 май 2021, 21:54
26 май 2021, 21:54
dcab5a3
Код
Авторство
О чём код?
#ifndef RPCHistoHelper_H #define RPCHistoHelper_H #include "DQMServices/Core/interface/DQMStore.h" #include <string> struct RPCSummaryMapHisto { typedef dqm::implementation::MonitorElement MonitorElement; typedef dqm::implementation::IBooker IBooker; static MonitorElement* book(IBooker& booker, const std::string& name, const std::string& title); static void setBinBarrel(MonitorElement* me, const int wheel, const int sector, const double value); static void setBinEndcap(MonitorElement* me, const int disk, const int sector, const double value); static void setBinsBarrel(MonitorElement* me, const double value); static void setBinsEndcap(MonitorElement* me, const double value); }; #endif