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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#ifndef DTDCSByLumiTask_H
#define DTDCSByLumiTask_H
/*
* \file DTDCSByLumiTask.h
*
* \author C. Battilana - CIEMAT
* \author P. Bellan - INFN PD
* \author A. Branca = INFN PD
*
*/
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "DQMServices/Core/interface/DQMOneEDAnalyzer.h"
#include "FWCore/Framework/interface/LuminosityBlock.h"
#include "FWCore/Utilities/interface/ESGetToken.h"
#include "CondFormats/DataRecord/interface/DTHVStatusRcd.h"
#include "CondFormats/DTObjects/interface/DTHVStatus.h"
#include "Geometry/DTGeometry/interface/DTGeometry.h"
#include "Geometry/Records/interface/MuonGeometryRecord.h"
#include <vector>
class DTDCSByLumiTask : public DQMOneLumiEDAnalyzer<> {
public:
/// Constructor
DTDCSByLumiTask(const edm::ParameterSet& ps);
/// Destructor
~DTDCSByLumiTask() override;
protected:
/// Begin Run
void dqmBeginRun(const edm::Run&, const edm::EventSetup&) override;
// Book the histograms
void bookHistograms(DQMStore::IBooker&, edm::Run const&, edm::EventSetup const&) override;
/// By Lumi DCS DB Operation
void dqmBeginLuminosityBlock(edm::LuminosityBlock const& lumiSeg, edm::EventSetup const&) override;
/// By Lumi DCS DB Operation
void dqmEndLuminosityBlock(const edm::LuminosityBlock& lumiSeg, const edm::EventSetup&) override;
/// Analyze
void analyze(const edm::Event& e, const edm::EventSetup&) override;
private:
std::string topFolder() const;
int theEvents;
int theLumis;
bool DTHVRecordFound;
edm::ESHandle<DTGeometry> theDTGeom;
edm::ESGetToken<DTGeometry, MuonGeometryRecord> dtGeometryToken_;
edm::ESGetToken<DTHVStatus, DTHVStatusRcd> dtHVStatusToken_;
std::vector<MonitorElement*> hActiveUnits;
};
#endif
/* Local Variables: */
/* show-trailing-whitespace: t */
/* truncate-lines: t */
/* End: */
|