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
92
|
#ifndef DTSegmentAnalysisTest_H
#define DTSegmentAnalysisTest_H
/** \class DTSegmentAnalysisTest
* *
* 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 "DQMServices/Core/interface/DQMEDHarvester.h"
#include "Geometry/Records/interface/MuonGeometryRecord.h"
#include <memory>
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <map>
class DTGeometry;
class DTChamberId;
class DTSuperLayerId;
class DTSegmentAnalysisTest : public DQMEDHarvester {
public:
/// Constructor
DTSegmentAnalysisTest(const edm::ParameterSet &ps);
/// Destructor
~DTSegmentAnalysisTest() override;
void beginRun(const edm::Run &, const edm::EventSetup &) override;
void bookHistos(DQMStore::IBooker &);
/// Get the ME name
std::string getMEName(const DTChamberId &chID, std::string histoTag);
/// Perform client diagnostic operations
void performClientDiagnostic(DQMStore::IGetter &);
protected:
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override;
void dqmEndLuminosityBlock(DQMStore::IBooker &,
DQMStore::IGetter &,
edm::LuminosityBlock const &,
edm::EventSetup const &) override;
void dqmBeginLuminosityBlock(edm::LuminosityBlock const &lumiSeg, edm::EventSetup const &);
private:
int nLSs;
unsigned int nLumiSegs;
// switch on for detailed analysis
bool detailedAnalysis;
int nMinEvts;
int maxPhiHit;
int maxPhiZHit;
bool runOnline;
bool bookingdone;
edm::ParameterSet parameters;
edm::ESGetToken<DTGeometry, MuonGeometryRecord> muonGeomToken_;
const DTGeometry *muonGeom;
// the histograms
std::map<std::pair<int, int>, MonitorElement *> chi2Histos;
std::map<std::pair<int, int>, MonitorElement *> segmRecHitHistos;
std::map<int, MonitorElement *> summaryHistos;
// top folder for the histograms in DQMStore
std::string topHistoFolder;
};
#endif
|