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
80
81
82
83
84
85
86
87
88
89
90
91
|
#ifndef DTEfficiencyTest_H
#define DTEfficiencyTest_H
/** \class DTEfficiencyTest
* *
* DQM Test Client
*
* \author G. Mila - INFN Torino
*
* threadsafe version (//-) oct/nov 2014 - WATWanAbdullah -ncpp-um-my
*
*
*/
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "DataFormats/Common/interface/Handle.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 "FWCore/Framework/interface/LuminosityBlock.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "Geometry/Records/interface/MuonGeometryRecord.h"
#include "DQMServices/Core/interface/DQMEDHarvester.h"
#include <memory>
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <map>
class DTGeometry;
class DTChamberId;
class DTSuperLayerId;
class DTLayerId;
class DTEfficiencyTest : public DQMEDHarvester {
public:
/// Constructor
DTEfficiencyTest(const edm::ParameterSet &ps);
/// Destructor
~DTEfficiencyTest() override;
protected:
/// beginrun
void beginRun(const edm::Run &r, const edm::EventSetup &c) override;
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override;
/// book the new ME
void bookHistos(DQMStore::IBooker &, const DTLayerId &ch, int firstWire, int lastWire);
/// book the summary histograms
void bookHistos(DQMStore::IBooker &, int wh);
/// Get the ME name
std::string getMEName(std::string histoTag, const DTLayerId &lID);
/// DQM Client Diagnostic
void dqmEndLuminosityBlock(DQMStore::IBooker &,
DQMStore::IGetter &,
edm::LuminosityBlock const &,
edm::EventSetup const &) override;
private:
int nevents;
unsigned int nLumiSegs;
int prescaleFactor;
int run;
int percentual;
edm::ParameterSet parameters;
edm::ESGetToken<DTGeometry, MuonGeometryRecord> muonGeomToken_;
const DTGeometry *muonGeom;
std::map<DTLayerId, MonitorElement *> EfficiencyHistos;
std::map<DTLayerId, MonitorElement *> UnassEfficiencyHistos;
// wheel summary histograms
std::map<int, MonitorElement *> wheelHistos;
std::map<int, MonitorElement *> wheelUnassHistos;
};
#endif
|