/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQMServices/Examples/interface/DQMExample_Step2.h
38 строк
1 KB
Marcel Andre Schneider
Run remove-monitorelement-includes
08 июл 2019, 17:51
08 июл 2019, 17:51
69d0e8a
Код
Авторство
О чём код?
#ifndef DQMExample_Step2_H #define DQMExample_Step2_H // Framework #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "FWCore/ServiceRegistry/interface/Service.h" #include "FWCore/Utilities/interface/InputTag.h" // DQM #include "DQMServices/Core/interface/DQMEDHarvester.h" #include "DQMServices/Core/interface/DQMStore.h" class DQMExample_Step2 : public DQMEDHarvester { public: DQMExample_Step2(const edm::ParameterSet &ps); ~DQMExample_Step2() override; protected: void beginJob() override; void dqmEndLuminosityBlock(DQMStore::IBooker &, DQMStore::IGetter &, edm::LuminosityBlock const &, edm::EventSetup const &) override; // performed in the endLumi void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override; // performed in the endJob private: // private variables // variables from config file std::string numMonitorName_; std::string denMonitorName_; // Histograms MonitorElement *h_ptRatio; }; #endif