/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/CSCMonitorModule/plugins/CSCDcsInfo.h
45 строк
1 KB
Matti Kortelainen
Remove (some) unnecessary includes
27 апр 2022, 16:28
27 апр 2022, 16:28
d346cf0
Код
Авторство
О чём код?
/* * ===================================================================================== * * Filename: CSCDcsInfo.h * * Description: CSC DCS Information * * Version: 1.0 * Created: 12/09/2008 10:53:27 AM * Revision: none * Compiler: gcc * * Author: Valdas Rapsevicius (VR), valdas.rapsevicius@cern.ch * Company: CERN, CH * * ===================================================================================== */ #ifndef CSCDcsInfo_H #define CSCDcsInfo_H // system include files #include <memory> // FWCore #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/MakerMacros.h" // DQM #include <DQMServices/Core/interface/DQMStore.h> #include <DQMServices/Core/interface/DQMEDHarvester.h> class CSCDcsInfo : public DQMEDHarvester { public: explicit CSCDcsInfo(const edm::ParameterSet &); ~CSCDcsInfo() override {} protected: void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override; private: std::map<std::string, MonitorElement *> mos; }; #endif