Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
Main Page
Related Pages
Modules
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
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
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
y
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
Properties
Related Functions
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
v
w
x
z
Files
File List
File 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
l
m
n
o
p
q
r
s
t
u
v
w
x
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
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
x
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
Macros
_
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
GitLab
LXR
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
PhysicsAnalysis
ElectronPhotonID
PhotonEfficiencyCorrection
src
testAthenaPhotonAlg.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef PHOTONEFFICIENCYCORRECTION_TESTATHENAPHOTONALG_H
6
#define PHOTONEFFICIENCYCORRECTION_TESTATHENAPHOTONALG_H 1
7
8
#include "
AthenaBaseComps/AthAlgorithm.h
"
9
#include "GaudiKernel/ToolHandle.h"
10
11
// forward declarations
12
class
IAsgPhotonEfficiencyCorrectionTool
;
13
14
class
testAthenaPhotonAlg
:
public
::AthAlgorithm
{
15
public
:
16
testAthenaPhotonAlg
(
const
std::string&
name
, ISvcLocator* pSvcLocator );
17
virtual
~testAthenaPhotonAlg
();
18
19
virtual
StatusCode
initialize
();
20
virtual
StatusCode
execute
();
21
virtual
StatusCode
finalize
();
22
23
private
:
25
ToolHandle< IAsgPhotonEfficiencyCorrectionTool >
m_photonSF
;
26
};
27
28
#endif //> !PHOTONEFFICIENCYCORRECTION_TESTATHENAPHOTONALG_H
testAthenaPhotonAlg::finalize
virtual StatusCode finalize()
Definition:
testAthenaPhotonAlg.cxx:31
testAthenaPhotonAlg::testAthenaPhotonAlg
testAthenaPhotonAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
testAthenaPhotonAlg.cxx:15
IAsgPhotonEfficiencyCorrectionTool
Definition:
IAsgPhotonEfficiencyCorrectionTool.h:23
testAthenaPhotonAlg::~testAthenaPhotonAlg
virtual ~testAthenaPhotonAlg()
testAthenaPhotonAlg
Definition:
testAthenaPhotonAlg.h:14
AthAlgorithm.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
testAthenaPhotonAlg::m_photonSF
ToolHandle< IAsgPhotonEfficiencyCorrectionTool > m_photonSF
The tool handle to our photon efficiency correction.
Definition:
testAthenaPhotonAlg.h:25
AthAlgorithm
Definition:
AthAlgorithm.h:47
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
testAthenaPhotonAlg::initialize
virtual StatusCode initialize()
Definition:
testAthenaPhotonAlg.cxx:24
testAthenaPhotonAlg::execute
virtual StatusCode execute()
Definition:
testAthenaPhotonAlg.cxx:38
Generated on Mon Apr 21 2025 21:19:44 for ATLAS Offline Software by
1.8.18