1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*
* =====================================================================================
*
* Filename: CSCDaqInfo.h
*
* Description: CSC DAQ 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 CSCDaqInfo_H
#define CSCDaqInfo_H
// system include files
#include <memory>
// FWCore
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/LuminosityBlock.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
// DQM
#include <DQMServices/Core/interface/DQMStore.h>
#include <DQMServices/Core/interface/DQMEDHarvester.h>
class CSCDaqInfo : public DQMEDHarvester {
public:
explicit CSCDaqInfo(const edm::ParameterSet &);
~CSCDaqInfo() override {}
protected:
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override;
private:
std::map<std::string, MonitorElement *> mos;
};
#endif
|