CMS 3D CMS Logo

CSCDaqInfo.h
Go to the documentation of this file.
1 /*
2  * =====================================================================================
3  *
4  * Filename: CSCDaqInfo.h
5  *
6  * Description: CSC DAQ 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 CSCDaqInfo_H
20 #define CSCDaqInfo_H
21 
22 // system include files
23 #include <memory>
24 
25 // FWCore
30 
31 // DQM
34 
35 class CSCDaqInfo : public DQMEDHarvester {
36 public:
37  explicit CSCDaqInfo(const edm::ParameterSet &);
38  ~CSCDaqInfo() override {}
39 
40 protected:
41  void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override;
42 
43 private:
44  std::map<std::string, MonitorElement *> mos;
45 };
46 
47 #endif
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override
Definition: CSCDaqInfo.cc:26
~CSCDaqInfo() override
Definition: CSCDaqInfo.h:38
std::map< std::string, MonitorElement * > mos
Definition: CSCDaqInfo.h:44
CSCDaqInfo(const edm::ParameterSet &)
Definition: CSCDaqInfo.cc:24