/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/EcalPreshowerMonitorClient/interface/EcalPreshowerMonitorClient.h
33 строки
1 KB
Cms Build
Clang-Format
08 май 2019, 14:20
08 май 2019, 14:20
b61bbc5
Код
Авторство
О чём код?
#ifndef EcalPreshowerMonitorClient_H #define EcalPreshowerMonitorClient_H #include "DQMServices/Core/interface/DQMEDHarvester.h" class ESClient; class EcalPreshowerMonitorClient : public DQMEDHarvester { public: EcalPreshowerMonitorClient(const edm::ParameterSet &); ~EcalPreshowerMonitorClient() override; static void fillDescriptions(edm::ConfigurationDescriptions &); private: void dqmEndLuminosityBlock(DQMStore::IBooker &, DQMStore::IGetter &, const edm::LuminosityBlock &, const edm::EventSetup &) override; void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override; // ----------member data --------------------------- bool debug_; bool verbose_; std::vector<ESClient *> clients_; // Data members existed below could not have been used in any way, yet was // consuming O(100kB) of memory. Removed together with htmlOutput, which was a // private function that was not called from anywhere. (yiiyama, Sep 18 2014) }; #endif