CMS 3D CMS Logo

CSCDcsInfo.h
Go to the documentation of this file.
1 /*
2  * =====================================================================================
3  *
4  * Filename: CSCDcsInfo.h
5  *
6  * Description: CSC DCS Information
7  *
8  * Version: 1.0
9  * Created: 12/09/2008 10:53:27 AM
10  * Revision: none
11  * Compiler: gcc
12  *
13  * Author: Valdas Rapsevicius (VR), valdas.rapsevicius@cern.ch
14  * Company: CERN, CH
15  *
16  * =====================================================================================
17  */
18 
19 #ifndef CSCDcsInfo_H
20 #define CSCDcsInfo_H
21 
22 // system include files
23 #include <memory>
24 
25 // FWCore
28 
29 // DQM
32 
33 class CSCDcsInfo : public DQMEDHarvester {
34 public:
35  explicit CSCDcsInfo(const edm::ParameterSet &);
36  ~CSCDcsInfo() override {}
37 
38 protected:
39  void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override;
40 
41 private:
42  std::map<std::string, MonitorElement *> mos;
43 };
44 
45 #endif
std::map< std::string, MonitorElement * > mos
Definition: CSCDcsInfo.h:42
CSCDcsInfo(const edm::ParameterSet &)
Definition: CSCDcsInfo.cc:24
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override
Definition: CSCDcsInfo.cc:26
~CSCDcsInfo() override
Definition: CSCDcsInfo.h:36