/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/RPCMonitorDigi/interface/RPCMonitorRaw.h
41 строка
1 KB
Junghwan John Goh
moderize syntax and further use fmt::format()
22 май 2021, 15:40
22 май 2021, 15:40
9dc9e47
Код
Авторство
О чём код?
#ifndef DQM_RPCMonitorModule_RPCMonitorRaw_H #define DQM_RPCMonitorModule_RPCMonitorRaw_H /** \class RPCMonitorRaw ** Analyse errors in raw data stream as RPCRawDataCounts produced by RPCRawToDigi **/ #include "DQMServices/Core/interface/DQMEDAnalyzer.h" #include "DQMServices/Core/interface/DQMStore.h" #include "FWCore/Framework/interface/Event.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "DataFormats/RPCDigi/interface/RPCRawDataCounts.h" class RPCMonitorRaw : public DQMEDAnalyzer { public: explicit RPCMonitorRaw(const edm::ParameterSet& cfg); ~RPCMonitorRaw() override; void analyze(const edm::Event&, const edm::EventSetup&) override; void bookHistograms(DQMStore::IBooker&, edm::Run const&, edm::EventSetup const&) override; private: MonitorElement* me_t[3]; MonitorElement* me_e[3]; MonitorElement* me_mapGoodEvents; MonitorElement* me_mapBadEvents; edm::ParameterSet theConfig; std::vector<MonitorElement*> theWatchedErrorHistos[3]; // histos with physical locations // (RMB,LINK)of selected ReadoutErrors unsigned int theWatchedErrorHistoPos[10]; // for a give error type show its position // (1..10) in theWatchedErrorHistos // to get index one has to subtract -1 // 0 is not selected error type edm::EDGetTokenT<RPCRawDataCounts> rpcRawDataCountsTag_; }; #endif