/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/EcalMonitorClient/interface/LedClient.h
34 строки
784 B
Abhirami Harilal
Change quality cuts for some supercrystals in the EE for LED plots
28 мар 2022, 15:11
28 мар 2022, 15:11
d9f03c2
Код
Авторство
О чём код?
#ifndef LedClient_H #define LedClient_H #include "DQWorkerClient.h" namespace ecaldqm { class LedClient : public DQWorkerClient { public: LedClient(); ~LedClient() override {} void producePlots(ProcessType) override; private: void setParams(edm::ParameterSet const&) override; std::map<int, unsigned> wlToME_; int minChannelEntries_; std::vector<double> expectedAmplitude_; double toleranceAmplitude_; double toleranceAmpRMSRatio_; std::vector<double> expectedTiming_; double toleranceTiming_; double toleranceTimRMS_; std::vector<double> expectedPNAmplitude_; double tolerancePNAmp_; double tolerancePNRMSRatio_; float forwardFactor_; std::vector<uint32_t> SClist_; }; } // namespace ecaldqm #endif