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
CondTools
Hcal
plugins
HcalPedestalWidthsPopConAnalyzer.cc
Go to the documentation of this file.
1
#include "
CondCore/PopCon/interface/PopConAnalyzer.h
"
2
#include "
CondTools/Hcal/interface/HcalPedestalWidthsHandler.h
"
3
#include "
FWCore/Framework/interface/MakerMacros.h
"
4
5
//typedef popcon::PopConAnalyzer<HcalPedestalWidthsHandler> HcalPedestalWidthsPopConAnalyzer;
6
7
class
HcalPedestalWidthsPopConAnalyzer
:
public
popcon::PopConAnalyzer
<HcalPedestalWidthsHandler> {
8
public
:
9
typedef
HcalPedestalWidthsHandler
SourceHandler
;
10
11
HcalPedestalWidthsPopConAnalyzer
(
const
edm::ParameterSet
&
pset
)
12
:
popcon
::
PopConAnalyzer
<
HcalPedestalWidthsHandler
>(
pset
),
13
m_populator
(
pset
),
14
m_source
(
pset
.getParameter<
edm
::
ParameterSet
>(
"Source"
)),
15
m_tok
(
esConsumes
<
HcalPedestalWidths
,
HcalPedestalWidthsRcd
>()) {}
16
17
private
:
18
void
endJob
()
override
{
19
m_source
.
initObject
(
myDBObject
);
20
write
();
21
}
22
23
void
analyze
(
const
edm::Event
&
ev
,
const
edm::EventSetup
& esetup)
override
{
24
//Using ES to get the data:
25
26
myDBObject
=
new
HcalPedestalWidths
(esetup.
getData
(
m_tok
));
27
}
28
29
void
write
() {
m_populator
.
write
(
m_source
); }
30
31
private
:
32
popcon::PopCon
m_populator
;
33
SourceHandler
m_source
;
34
edm::ESGetToken<HcalPedestalWidths, HcalPedestalWidthsRcd>
m_tok
;
35
36
HcalPedestalWidths
*
myDBObject
;
37
};
38
39
DEFINE_FWK_MODULE
(
HcalPedestalWidthsPopConAnalyzer
);
HcalPedestalWidthsPopConAnalyzer::write
void write()
Definition:
HcalPedestalWidthsPopConAnalyzer.cc:29
HcalPedestalWidthsHandler.h
HcalPedestalWidthsPopConAnalyzer::SourceHandler
HcalPedestalWidthsHandler SourceHandler
Definition:
HcalPedestalWidthsPopConAnalyzer.cc:9
edm
HLT enums.
Definition:
AlignableModifier.h:19
HcalPedestalWidthsHandler::initObject
void initObject(HcalPedestalWidths *)
Definition:
HcalPedestalWidthsHandler.cc:36
HcalPedestalWidths
Definition:
HcalPedestalWidths.h:17
HcalPedestalWidthsPopConAnalyzer
Definition:
HcalPedestalWidthsPopConAnalyzer.cc:7
MakerMacros.h
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition:
MakerMacros.h:16
HcalPedestalWidthsPopConAnalyzer::m_populator
popcon::PopCon m_populator
Definition:
HcalPedestalWidthsPopConAnalyzer.cc:32
HcalPedestalWidthsPopConAnalyzer::HcalPedestalWidthsPopConAnalyzer
HcalPedestalWidthsPopConAnalyzer(const edm::ParameterSet &pset)
Definition:
HcalPedestalWidthsPopConAnalyzer.cc:11
HcalPedestalWidthsRcd
Definition:
HcalPedestalWidthsRcd.h:8
edm::ParameterSet
Definition:
ParameterSet.h:47
popcon::PopCon::write
void write(Source const &source)
Definition:
PopCon.h:107
ParameterSet
Definition:
Functions.h:16
HcalPedestalWidthsPopConAnalyzer::m_source
SourceHandler m_source
Definition:
HcalPedestalWidthsPopConAnalyzer.cc:33
edm::EventSetup
Definition:
EventSetup.h:58
edm::ESGetToken< HcalPedestalWidths, HcalPedestalWidthsRcd >
edm::EventSetup::getData
bool getData(T &iHolder) const
Definition:
EventSetup.h:127
HcalPedestalWidthsHandler
Definition:
HcalPedestalWidthsHandler.h:22
popcon
Definition:
Exception.h:6
HcalPedestalWidthsPopConAnalyzer::endJob
void endJob() override
Definition:
HcalPedestalWidthsPopConAnalyzer.cc:18
ev
bool ev
Definition:
Hydjet2Hadronizer.cc:97
HcalPedestalWidthsPopConAnalyzer::myDBObject
HcalPedestalWidths * myDBObject
Definition:
HcalPedestalWidthsPopConAnalyzer.cc:36
edm::EDConsumerBase::esConsumes
auto esConsumes()
Definition:
EDConsumerBase.h:206
HcalPedestalWidthsPopConAnalyzer::analyze
void analyze(const edm::Event &ev, const edm::EventSetup &esetup) override
Definition:
HcalPedestalWidthsPopConAnalyzer.cc:23
popcon::PopCon
Definition:
PopCon.h:29
edm::Event
Definition:
Event.h:73
PopConAnalyzer.h
muonDTDigis_cfi.pset
pset
Definition:
muonDTDigis_cfi.py:27
popcon::PopConAnalyzer< HcalPedestalWidthsHandler >::PopConAnalyzer
PopConAnalyzer(const edm::ParameterSet &pset)
Definition:
PopConAnalyzer.h:21
popcon::PopConAnalyzer
Definition:
PopConAnalyzer.h:17
HcalPedestalWidthsPopConAnalyzer::m_tok
edm::ESGetToken< HcalPedestalWidths, HcalPedestalWidthsRcd > m_tok
Definition:
HcalPedestalWidthsPopConAnalyzer.cc:34
Generated for CMSSW Reference Manual by
1.8.16