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
RecoTauTag
RecoTau
src
RecoTauPluginsCommon.cc
Go to the documentation of this file.
1
#include "
RecoTauTag/RecoTau/interface/RecoTauPluginsCommon.h
"
2
3
namespace
reco
{
4
namespace
tau
{
5
6
// ctor
7
RecoTauNamedPlugin::RecoTauNamedPlugin
(
const
edm::ParameterSet
&
pset
)
8
: name_(
pset
.getParameter<
std
::
string
>(
"name"
)) {}
9
10
const
std::string
&
RecoTauNamedPlugin::name
()
const
{
return
name_
; }
11
12
// ctor
13
RecoTauEventHolderPlugin::RecoTauEventHolderPlugin
(
const
edm::ParameterSet
&
pset
)
14
:
RecoTauNamedPlugin
(
pset
), evt_(nullptr), es_(nullptr) {}
15
16
const
edm::Event
*
RecoTauEventHolderPlugin::evt
()
const
{
return
evt_
; }
17
edm::Event
*
RecoTauEventHolderPlugin::evt
() {
return
evt_
; }
18
const
edm::EventSetup
*
RecoTauEventHolderPlugin::evtSetup
()
const
{
return
es_
; }
19
20
void
RecoTauEventHolderPlugin::setup
(
edm::Event
& evt,
const
edm::EventSetup
& es) {
21
evt_
= &
evt
;
22
es_
= &es;
23
// Call the virtual beginEvent() function
24
this->
beginEvent
();
25
}
26
27
}
// namespace tau
28
}
// namespace reco
reco::tau::RecoTauEventHolderPlugin::evt
const edm::Event * evt() const
Definition:
RecoTauPluginsCommon.cc:16
reco::tau::RecoTauNamedPlugin::RecoTauNamedPlugin
RecoTauNamedPlugin(const edm::ParameterSet &pset)
Definition:
RecoTauPluginsCommon.cc:7
reco::tau::RecoTauEventHolderPlugin::evt_
edm::Event * evt_
Definition:
RecoTauPluginsCommon.h:57
reco::tau::RecoTauNamedPlugin::name
const std::string & name() const
Definition:
RecoTauPluginsCommon.cc:10
metsig::tau
Definition:
SignAlgoResolutions.h:49
reco
fixed size matrix
Definition:
AlignmentAlgorithmBase.h:46
reco::tau::RecoTauNamedPlugin::name_
std::string name_
Definition:
RecoTauPluginsCommon.h:38
RecoTauPluginsCommon.h
reco::tau::RecoTauNamedPlugin
Definition:
RecoTauPluginsCommon.h:30
edm::ParameterSet
Definition:
ParameterSet.h:47
edm::EventSetup
Definition:
EventSetup.h:58
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition:
AlCaHLTBitMon_QueryRunRegistry.py:256
std
Definition:
JetResolutionObject.h:76
reco::tau::RecoTauEventHolderPlugin::es_
const edm::EventSetup * es_
Definition:
RecoTauPluginsCommon.h:58
reco::tau::RecoTauEventHolderPlugin::evtSetup
const edm::EventSetup * evtSetup() const
Definition:
RecoTauPluginsCommon.cc:18
reco::tau::RecoTauEventHolderPlugin::beginEvent
virtual void beginEvent()
Definition:
RecoTauPluginsCommon.h:54
edm::Event
Definition:
Event.h:73
reco::tau::RecoTauEventHolderPlugin::setup
void setup(edm::Event &, const edm::EventSetup &)
Definition:
RecoTauPluginsCommon.cc:20
reco::tau::RecoTauEventHolderPlugin::RecoTauEventHolderPlugin
RecoTauEventHolderPlugin(const edm::ParameterSet &pset)
Definition:
RecoTauPluginsCommon.cc:13
muonDTDigis_cfi.pset
pset
Definition:
muonDTDigis_cfi.py:27
Generated for CMSSW Reference Manual by
1.8.16