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 #include <iostream>
25 #include <fstream>
26 
27 // FWCore
37 
38 // DQM
42 
43 class CSCDaqInfo : public DQMEDHarvester {
44 
45  public:
46 
47  explicit CSCDaqInfo(const edm::ParameterSet&);
48  ~CSCDaqInfo() override { }
49 
50  protected:
51  void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override;
52 
53  private:
54 
55  std::map<std::string, MonitorElement*> mos;
56 
57 };
58 
59 #endif
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override
Definition: CSCDaqInfo.cc:28
~CSCDaqInfo() override
Definition: CSCDaqInfo.h:48
std::map< std::string, MonitorElement * > mos
Definition: CSCDaqInfo.h:55
CSCDaqInfo(const edm::ParameterSet &)
Definition: CSCDaqInfo.cc:24