/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/EcalMonitorClient/interface/IntegrityClient.h
30 строк
921 B
Abhirami Harilal
Add TTID error plots
15 ноя 2022, 18:17
15 ноя 2022, 18:17
aa8675e
Код
Авторство
О чём код?
#ifndef IntegrityClient_H #define IntegrityClient_H #include "DQWorkerClient.h" #include "FWCore/Framework/interface/ESHandle.h" #include "FWCore/Framework/interface/EventSetup.h" #include "CondFormats/EcalObjects/interface/EcalChannelStatus.h" #include "CondFormats/DataRecord/interface/EcalChannelStatusRcd.h" namespace ecaldqm { class IntegrityClient : public DQWorkerClient { public: IntegrityClient(); ~IntegrityClient() override {} void producePlots(ProcessType) override; void endLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override; private: void setParams(edm::ParameterSet const&) override; edm::ESGetToken<EcalChannelStatus, EcalChannelStatusRcd> chStatusToken; const EcalChannelStatus* chStatus; void setTokens(edm::ConsumesCollector&) override; float errFractionThreshold_; int processedEvents; }; } // namespace ecaldqm #endif