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
48
49
50
51
|
#ifndef ZDCTask_h
#define ZDCTask_h
/*
* file: ZDCTask.h
* Author: Viktor KHristenko
* Description:
* Task for ZDC Read out
*/
#include "DQM/HcalCommon/interface/DQTask.h"
#include "DQM/HcalCommon/interface/Utilities.h"
#include "DQM/HcalCommon/interface/Container2D.h"
#include "DQM/HcalCommon/interface/ContainerProf1D.h"
#include "DQM/HcalCommon/interface/ContainerSingleProf1D.h"
#include "DQM/HcalCommon/interface/ContainerSingleProf2D.h"
#include "DQM/HcalCommon/interface/ContainerSingle1D.h"
#include "DQM/HcalCommon/interface/ContainerSingle2D.h"
#include "DQM/HcalCommon/interface/HashFilter.h"
#include "DQM/HcalCommon/interface/ElectronicsMap.h"
class ZDCTask : public DQMEDAnalyzer {
public:
ZDCTask(edm::ParameterSet const&);
~ZDCTask() override {}
void bookHistograms(DQMStore::IBooker&, edm::Run const&, edm::EventSetup const&) override;
protected:
void analyze(edm::Event const&, edm::EventSetup const&) override;
// tags
edm::InputTag _tagQIE10;
edm::EDGetTokenT<ZDCDigiCollection> _tokQIE10;
// cuts/constants from input
double _cut;
int _ped;
// hcaldqm::Containers
std::map<std::string, MonitorElement*> _cShape_EChannel;
std::map<std::string, MonitorElement*> _cADC_EChannel;
std::map<std::string, MonitorElement*> _cADC_vs_TS_EChannel;
// hcaldqm::Containers overall
MonitorElement* _cShape;
MonitorElement* _cADC;
MonitorElement* _cADC_vs_TS;
};
#endif
|