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
w
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
Simulation
Overlay
OverlayCopyAlgs
src
CopyJetTruthInfo.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef OVERLAYCOPYALGS_COPYJETTRUTHINFO_H
6
#define OVERLAYCOPYALGS_COPYJETTRUTHINFO_H
7
8
#include "
AthenaBaseComps/AthReentrantAlgorithm.h
"
9
#include "
xAODJet/JetContainer.h
"
10
11
class
CopyJetTruthInfo
:
public
AthReentrantAlgorithm
12
{
13
public
:
14
15
CopyJetTruthInfo
(
const
std::string &
name
, ISvcLocator *pSvcLocator);
16
17
virtual
StatusCode
initialize
()
override
;
18
virtual
StatusCode
execute
(
const
EventContext& ctx)
const override
;
19
20
private
:
21
SG::ReadHandleKey<xAOD::JetContainer>
m_bkgInputKey
{
this
,
"BkgInputKey"
,
""
,
"ReadHandleKey for Background Jet Containers"
};
22
SG::WriteHandleKey<xAOD::JetContainer>
m_outputKey
{
this
,
"OutputKey"
,
""
,
"WriteHandleKey for Output Jet Containers"
};
23
24
};
25
26
#endif // OVERLAYCOPYALGS_COPYJETTRUTHINFO_H
CopyJetTruthInfo::m_bkgInputKey
SG::ReadHandleKey< xAOD::JetContainer > m_bkgInputKey
Definition:
CopyJetTruthInfo.h:21
CopyJetTruthInfo::execute
virtual StatusCode execute(const EventContext &ctx) const override
Definition:
CopyJetTruthInfo.cxx:26
CopyJetTruthInfo::m_outputKey
SG::WriteHandleKey< xAOD::JetContainer > m_outputKey
Definition:
CopyJetTruthInfo.h:22
SG::ReadHandleKey< xAOD::JetContainer >
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition:
AthReentrantAlgorithm.h:74
SG::WriteHandleKey< xAOD::JetContainer >
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthReentrantAlgorithm.h
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
JetContainer.h
CopyJetTruthInfo::CopyJetTruthInfo
CopyJetTruthInfo(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
CopyJetTruthInfo.cxx:10
CopyJetTruthInfo::initialize
virtual StatusCode initialize() override
Definition:
CopyJetTruthInfo.cxx:13
CopyJetTruthInfo
Definition:
CopyJetTruthInfo.h:12
Generated on Mon May 12 2025 21:07:53 for ATLAS Offline Software by
1.8.18