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
Calibration
HcalAlCaRecoProducers
interface
AlCaHcalNoiseProducer.h
Go to the documentation of this file.
1
// -*- C++ -*-
2
3
// system include files
4
#include <memory>
5
#include <string>
6
// user include files
7
#include "
FWCore/Framework/interface/Frameworkfwd.h
"
8
#include "
FWCore/Framework/interface/EDProducer.h
"
9
10
#include "
FWCore/Framework/interface/Event.h
"
11
#include "
FWCore/Framework/interface/MakerMacros.h
"
12
13
#include "
FWCore/ParameterSet/interface/ParameterSet.h
"
14
#include "
FWCore/Framework/interface/Frameworkfwd.h
"
15
#include "
FWCore/Framework/interface/Event.h
"
16
#include "
FWCore/Framework/interface/MakerMacros.h
"
17
#include "
FWCore/Framework/interface/EventSetup.h
"
18
#include "
FWCore/ParameterSet/interface/ParameterSet.h
"
19
20
#include "
DataFormats/Common/interface/Ref.h
"
21
#include "
DataFormats/CaloTowers/interface/CaloTowerCollection.h
"
22
#include "
DataFormats/DetId/interface/DetId.h
"
23
24
#include "
Geometry/Records/interface/IdealGeometryRecord.h
"
25
#include "
Geometry/CaloGeometry/interface/CaloGeometry.h
"
26
#include "
DataFormats/GeometryVector/interface/GlobalPoint.h
"
27
#include "
DataFormats/CaloTowers/interface/CaloTowerDetId.h
"
28
#include "
DataFormats/HcalRecHit/interface/HcalRecHitCollections.h
"
29
#include "
DataFormats/EcalRecHit/interface/EcalRecHitCollections.h
"
30
31
#include "
DataFormats/FEDRawData/interface/FEDRawDataCollection.h
"
32
#include "
DataFormats/EcalRecHit/interface/EcalRecHitCollections.h
"
33
#include "
DataFormats/METReco/interface/CaloMETCollection.h
"
34
#include "
DataFormats/JetReco/interface/CaloJetCollection.h
"
35
#include "
DataFormats/CaloTowers/interface/CaloTowerCollection.h
"
36
37
//
38
// class decleration
39
//
40
41
class
AlCaHcalNoiseProducer
:
public
edm::EDProducer
{
42
public
:
43
explicit
AlCaHcalNoiseProducer
(
const
edm::ParameterSet
&);
44
~AlCaHcalNoiseProducer
()
override
;
45
46
void
produce
(
edm::Event
&,
const
edm::EventSetup
&)
override
;
47
48
private
:
49
// ----------member data ---------------------------
50
51
bool
useMet_
;
52
bool
useJet_
;
53
double
MetCut_
;
54
double
JetMinE_
;
55
double
JetHCALminEnergyFraction_
;
56
int
nAnomalousEvents
;
57
int
nEvents
;
58
59
std::vector<edm::InputTag>
ecalLabels_
;
60
61
edm::EDGetTokenT<reco::CaloJetCollection>
tok_jets_
;
62
edm::EDGetTokenT<reco::CaloMETCollection>
tok_met_
;
63
edm::EDGetTokenT<CaloTowerCollection>
tok_tower_
;
64
65
edm::EDGetTokenT<HBHERecHitCollection>
tok_hbhe_
;
66
edm::EDGetTokenT<HORecHitCollection>
tok_ho_
;
67
edm::EDGetTokenT<HFRecHitCollection>
tok_hf_
;
68
69
edm::EDGetTokenT<EcalRecHitCollection>
tok_ps_
;
70
edm::EDGetTokenT<FEDRawDataCollection>
tok_raw_
;
71
std::vector<edm::EDGetTokenT<EcalRecHitCollection> >
toks_ecal_
;
72
};
AlCaHcalNoiseProducer::tok_jets_
edm::EDGetTokenT< reco::CaloJetCollection > tok_jets_
Definition:
AlCaHcalNoiseProducer.h:61
CaloJetCollection.h
AlCaHcalNoiseProducer::nEvents
int nEvents
Definition:
AlCaHcalNoiseProducer.h:57
AlCaHcalNoiseProducer::AlCaHcalNoiseProducer
AlCaHcalNoiseProducer(const edm::ParameterSet &)
Definition:
AlCaHcalNoiseProducer.cc:25
EDProducer.h
edm::EDGetTokenT< reco::CaloJetCollection >
AlCaHcalNoiseProducer::ecalLabels_
std::vector< edm::InputTag > ecalLabels_
Definition:
AlCaHcalNoiseProducer.h:59
AlCaHcalNoiseProducer::~AlCaHcalNoiseProducer
~AlCaHcalNoiseProducer() override
Definition:
AlCaHcalNoiseProducer.cc:57
EcalRecHitCollections.h
AlCaHcalNoiseProducer::useJet_
bool useJet_
Definition:
AlCaHcalNoiseProducer.h:52
CaloMETCollection.h
MakerMacros.h
AlCaHcalNoiseProducer::toks_ecal_
std::vector< edm::EDGetTokenT< EcalRecHitCollection > > toks_ecal_
Definition:
AlCaHcalNoiseProducer.h:71
AlCaHcalNoiseProducer::tok_ps_
edm::EDGetTokenT< EcalRecHitCollection > tok_ps_
Definition:
AlCaHcalNoiseProducer.h:69
AlCaHcalNoiseProducer::JetHCALminEnergyFraction_
double JetHCALminEnergyFraction_
Definition:
AlCaHcalNoiseProducer.h:55
AlCaHcalNoiseProducer::JetMinE_
double JetMinE_
Definition:
AlCaHcalNoiseProducer.h:54
AlCaHcalNoiseProducer::tok_tower_
edm::EDGetTokenT< CaloTowerCollection > tok_tower_
Definition:
AlCaHcalNoiseProducer.h:63
edm::ParameterSet
Definition:
ParameterSet.h:47
AlCaHcalNoiseProducer::tok_met_
edm::EDGetTokenT< reco::CaloMETCollection > tok_met_
Definition:
AlCaHcalNoiseProducer.h:62
Event.h
AlCaHcalNoiseProducer
Definition:
AlCaHcalNoiseProducer.h:41
FEDRawDataCollection.h
IdealGeometryRecord.h
AlCaHcalNoiseProducer::tok_hf_
edm::EDGetTokenT< HFRecHitCollection > tok_hf_
Definition:
AlCaHcalNoiseProducer.h:67
CaloTowerDetId.h
edm::EventSetup
Definition:
EventSetup.h:58
AlCaHcalNoiseProducer::tok_raw_
edm::EDGetTokenT< FEDRawDataCollection > tok_raw_
Definition:
AlCaHcalNoiseProducer.h:70
CaloTowerCollection.h
Ref.h
AlCaHcalNoiseProducer::MetCut_
double MetCut_
Definition:
AlCaHcalNoiseProducer.h:53
DetId.h
AlCaHcalNoiseProducer::produce
void produce(edm::Event &, const edm::EventSetup &) override
Definition:
AlCaHcalNoiseProducer.cc:60
Frameworkfwd.h
CaloGeometry.h
EventSetup.h
edm::EDProducer
Definition:
EDProducer.h:35
HcalRecHitCollections.h
ParameterSet.h
AlCaHcalNoiseProducer::tok_ho_
edm::EDGetTokenT< HORecHitCollection > tok_ho_
Definition:
AlCaHcalNoiseProducer.h:66
AlCaHcalNoiseProducer::nAnomalousEvents
int nAnomalousEvents
Definition:
AlCaHcalNoiseProducer.h:56
edm::Event
Definition:
Event.h:73
GlobalPoint.h
AlCaHcalNoiseProducer::tok_hbhe_
edm::EDGetTokenT< HBHERecHitCollection > tok_hbhe_
Definition:
AlCaHcalNoiseProducer.h:65
AlCaHcalNoiseProducer::useMet_
bool useMet_
Definition:
AlCaHcalNoiseProducer.h:51
Generated for CMSSW Reference Manual by
1.8.16