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
|
#ifndef DQM_L1TMonitor_L1TStage2uGMTMuon_h
#define DQM_L1TMonitor_L1TStage2uGMTMuon_h
#include "DataFormats/L1Trigger/interface/Muon.h"
#include "DQMServices/Core/interface/DQMEDAnalyzer.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
#include "FWCore/ParameterSet/interface/ParameterSetDescription.h"
class L1TStage2uGMTMuon : public DQMEDAnalyzer {
public:
L1TStage2uGMTMuon(const edm::ParameterSet& ps);
~L1TStage2uGMTMuon() override;
static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
protected:
void bookHistograms(DQMStore::IBooker&, const edm::Run&, const edm::EventSetup&) override;
void analyze(const edm::Event&, const edm::EventSetup&) override;
private:
edm::EDGetTokenT<l1t::MuonBxCollection> ugmtMuonToken;
std::string monitorDir;
std::string titlePrefix;
bool verbose;
bool makeMuonAtVtxPlots;
bool displacedQuantities_;
MonitorElement* ugmtMuonBX;
MonitorElement* ugmtnMuons;
MonitorElement* ugmtMuonhwPt;
MonitorElement* ugmtMuonhwPtUnconstrained;
MonitorElement* ugmtMuonhwDXY;
MonitorElement* ugmtMuonhwEta;
MonitorElement* ugmtMuonhwPhi;
MonitorElement* ugmtMuonhwEtaAtVtx;
MonitorElement* ugmtMuonhwPhiAtVtx;
MonitorElement* ugmtMuonhwCharge;
MonitorElement* ugmtMuonhwChargeValid;
MonitorElement* ugmtMuonhwQual;
MonitorElement* ugmtMuonPt;
MonitorElement* ugmtMuonPtUnconstrained;
MonitorElement* ugmtMuonEta;
MonitorElement* ugmtMuonPhi;
MonitorElement* ugmtMuonEtaAtVtx;
MonitorElement* ugmtMuonPhiAtVtx;
MonitorElement* ugmtMuonCharge;
MonitorElement* ugmtMuonPtvsEta;
MonitorElement* ugmtMuonPtvsPhi;
MonitorElement* ugmtMuonPhivsEta;
MonitorElement* ugmtMuonPtvsEtaAtVtx;
MonitorElement* ugmtMuonPtvsPhiAtVtx;
MonitorElement* ugmtMuonPhiAtVtxvsEtaAtVtx;
MonitorElement* ugmtMuonBXvshwPt;
MonitorElement* ugmtMuonBXvshwEta;
MonitorElement* ugmtMuonBXvshwPhi;
MonitorElement* ugmtMuonBXvshwEtaAtVtx;
MonitorElement* ugmtMuonBXvshwPhiAtVtx;
MonitorElement* ugmtMuonBXvshwCharge;
MonitorElement* ugmtMuonBXvshwChargeValid;
MonitorElement* ugmtMuonBXvshwQual;
};
#endif
|