Main Page
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
o
p
q
r
s
t
u
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
d
e
f
l
m
o
p
s
t
u
v
Related Functions
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Package Documentation
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
HLTriggerOffline
SUSYBSM
interface
SUSY_HLT_MuonFakes.h
Go to the documentation of this file.
1
#ifndef SUSY_HLT_MuonFakes_H
2
#define SUSY_HLT_MuonFakes_H
3
4
// event
5
#include "
FWCore/Framework/interface/Event.h
"
6
#include "
FWCore/Framework/interface/EventSetup.h
"
7
8
// DQM
9
#include "
DQMServices/Core/interface/DQMEDAnalyzer.h
"
10
#include "
DQMServices/Core/interface/DQMStore.h
"
11
12
// Muon
13
#include "
DataFormats/MuonReco/interface/Muon.h
"
14
#include "
DataFormats/MuonReco/interface/MuonFwd.h
"
15
16
// MET
17
#include "
DataFormats/METReco/interface/CaloMET.h
"
18
#include "
DataFormats/METReco/interface/CaloMETCollection.h
"
19
#include "
DataFormats/METReco/interface/PFMET.h
"
20
#include "
DataFormats/METReco/interface/PFMETCollection.h
"
21
22
// Jets
23
#include "
DataFormats/JetReco/interface/CaloJet.h
"
24
#include "
DataFormats/JetReco/interface/PFJet.h
"
25
26
// Trigger
27
#include "
DataFormats/Common/interface/TriggerResults.h
"
28
#include "
DataFormats/HLTReco/interface/TriggerEvent.h
"
29
#include "
DataFormats/HLTReco/interface/TriggerEventWithRefs.h
"
30
#include "
DataFormats/HLTReco/interface/TriggerObject.h
"
31
#include "
HLTrigger/HLTcore/interface/HLTConfigProvider.h
"
32
33
class
SUSY_HLT_MuonFakes
:
public
DQMEDAnalyzer
{
34
public
:
35
SUSY_HLT_MuonFakes
(
const
edm::ParameterSet
&ps);
36
~SUSY_HLT_MuonFakes
()
override
;
37
38
protected
:
39
void
dqmBeginRun
(
edm::Run
const
&,
edm::EventSetup
const
&)
override
;
40
void
bookHistograms
(
DQMStore::IBooker
&,
edm::Run
const
&,
edm::EventSetup
const
&)
override
;
41
void
analyze
(
edm::Event
const
&
e
,
edm::EventSetup
const
&eSetup)
override
;
42
43
private
:
44
// histos booking function
45
void
bookHistos
(
DQMStore::IBooker
&);
46
47
// variables from config file
48
edm::EDGetTokenT<edm::TriggerResults>
triggerResults_
;
49
edm::EDGetTokenT<trigger::TriggerEvent>
theTrigSummary_
;
50
51
HLTConfigProvider
fHltConfig
;
52
53
std::string
HLTProcess_
;
54
std::string
triggerPath_
;
55
edm::InputTag
triggerFilter_
;
56
57
// Histograms
58
MonitorElement
*
h_triggerMuPt
;
59
MonitorElement
*
h_triggerMuEta
;
60
MonitorElement
*
h_triggerMuPhi
;
61
};
62
63
#endif
SUSY_HLT_MuonFakes::h_triggerMuEta
MonitorElement * h_triggerMuEta
Definition:
SUSY_HLT_MuonFakes.h:59
dqm::impl::MonitorElement
Definition:
MonitorElement.h:99
CaloJet.h
Muon.h
TriggerResults.h
SUSY_HLT_MuonFakes::h_triggerMuPhi
MonitorElement * h_triggerMuPhi
Definition:
SUSY_HLT_MuonFakes.h:60
edm::Run
Definition:
Run.h:45
TriggerEvent.h
SUSY_HLT_MuonFakes
Definition:
SUSY_HLT_MuonFakes.h:33
edm::EDGetTokenT< edm::TriggerResults >
PFJet.h
TriggerEventWithRefs.h
DQMStore.h
PFMETCollection.h
SUSY_HLT_MuonFakes::~SUSY_HLT_MuonFakes
~SUSY_HLT_MuonFakes() override
Definition:
SUSY_HLT_MuonFakes.cc:18
CaloMETCollection.h
SUSY_HLT_MuonFakes::SUSY_HLT_MuonFakes
SUSY_HLT_MuonFakes(const edm::ParameterSet &ps)
Definition:
SUSY_HLT_MuonFakes.cc:8
CaloMET.h
MuonFwd.h
SUSY_HLT_MuonFakes::dqmBeginRun
void dqmBeginRun(edm::Run const &, edm::EventSetup const &) override
Definition:
SUSY_HLT_MuonFakes.cc:22
SUSY_HLT_MuonFakes::analyze
void analyze(edm::Event const &e, edm::EventSetup const &eSetup) override
Definition:
SUSY_HLT_MuonFakes.cc:52
SUSY_HLT_MuonFakes::bookHistos
void bookHistos(DQMStore::IBooker &)
Definition:
SUSY_HLT_MuonFakes.cc:102
DQMEDAnalyzer.h
DQMEDAnalyzer
Definition:
DQMEDAnalyzer.py:1
SUSY_HLT_MuonFakes::fHltConfig
HLTConfigProvider fHltConfig
Definition:
SUSY_HLT_MuonFakes.h:51
edm::ParameterSet
Definition:
ParameterSet.h:47
Event.h
PFMET.h
SUSY_HLT_MuonFakes::HLTProcess_
std::string HLTProcess_
Definition:
SUSY_HLT_MuonFakes.h:53
SUSY_HLT_MuonFakes::bookHistograms
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
Definition:
SUSY_HLT_MuonFakes.cc:46
edm::EventSetup
Definition:
EventSetup.h:58
HLTConfigProvider.h
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition:
AlCaHLTBitMon_QueryRunRegistry.py:256
TriggerObject.h
SUSY_HLT_MuonFakes::theTrigSummary_
edm::EDGetTokenT< trigger::TriggerEvent > theTrigSummary_
Definition:
SUSY_HLT_MuonFakes.h:49
HLTConfigProvider
Definition:
HLTConfigProvider.h:29
EventSetup.h
SUSY_HLT_MuonFakes::triggerPath_
std::string triggerPath_
Definition:
SUSY_HLT_MuonFakes.h:54
dqm::implementation::IBooker
Definition:
DQMStore.h:43
SUSY_HLT_MuonFakes::triggerResults_
edm::EDGetTokenT< edm::TriggerResults > triggerResults_
Definition:
SUSY_HLT_MuonFakes.h:48
SUSY_HLT_MuonFakes::triggerFilter_
edm::InputTag triggerFilter_
Definition:
SUSY_HLT_MuonFakes.h:55
edm::Event
Definition:
Event.h:73
edm::InputTag
Definition:
InputTag.h:15
SUSY_HLT_MuonFakes::h_triggerMuPt
MonitorElement * h_triggerMuPt
Definition:
SUSY_HLT_MuonFakes.h:58
MillePedeFileConverter_cfg.e
e
Definition:
MillePedeFileConverter_cfg.py:37
Generated for CMSSW Reference Manual by
1.8.16