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
DerivationFramework
DerivationFrameworkInDet
DerivationFrameworkInDet
InDetTrackSelectionToolWrapper.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3
*/
4
6
// InDetTrackSelectionToolWrapper.h
8
9
#ifndef DERIVATIONFRAMEWORK_INDETTRACKSELECTIONTOOLWRAPPER_H
10
#define DERIVATIONFRAMEWORK_INDETTRACKSELECTIONTOOLWRAPPER_H
11
12
#include <string>
13
14
#include "
AthenaBaseComps/AthAlgTool.h
"
15
#include "
InDetTrackSelectionTool/IInDetTrackSelectionTool.h
"
16
#include "
DerivationFrameworkInterfaces/IAugmentationTool.h
"
17
#include "GaudiKernel/ToolHandle.h"
18
#include "
StoreGate/WriteDecorHandleKey.h
"
19
20
namespace
DerivationFramework
{
21
22
class
InDetTrackSelectionToolWrapper
:
public
extends<AthAlgTool, IAugmentationTool> {
23
public
:
24
InDetTrackSelectionToolWrapper
(
const
std::string&
t
,
const
std::string&
n
,
const
IInterface*
p
);
25
26
StatusCode
initialize
();
27
StatusCode
finalize
();
28
virtual
StatusCode
addBranches
()
const
;
29
30
private
:
31
ToolHandle< InDet::IInDetTrackSelectionTool >
m_tool
32
{
this
,
"TrackSelectionTool"
,
"InDet::InDetTrackSelectionTool/TrackSelectionTool"
};
// @TODO should not have a default value, since there is not generally correct default
33
34
SG::ReadHandleKey<xAOD::TrackParticleContainer>
m_tracksKey
35
{
this
,
"ContainerName"
,
"InDetTrackParticles"
,
"The input TrackParticleCollection"
};
36
37
SG::WriteDecorHandleKey<xAOD::TrackParticleContainer>
m_decorationKey
38
{
this
,
"DecorationName"
,
""
,
"Name of the decoration which provides the track selection result."
};
39
};
40
}
41
42
#endif // DERIVATIONFRAMEWORK_INDETTRACKSELECTIONTOOLWRAPPER_H
SG::WriteDecorHandleKey< xAOD::TrackParticleContainer >
DerivationFramework::InDetTrackSelectionToolWrapper::addBranches
virtual StatusCode addBranches() const
Definition:
InDetTrackSelectionToolWrapper.cxx:54
DerivationFramework::InDetTrackSelectionToolWrapper::finalize
StatusCode finalize()
Definition:
InDetTrackSelectionToolWrapper.cxx:49
IAugmentationTool.h
DerivationFramework::InDetTrackSelectionToolWrapper::InDetTrackSelectionToolWrapper
InDetTrackSelectionToolWrapper(const std::string &t, const std::string &n, const IInterface *p)
Definition:
InDetTrackSelectionToolWrapper.cxx:19
read_hist_ntuple.t
t
Definition:
read_hist_ntuple.py:5
DerivationFramework::InDetTrackSelectionToolWrapper::m_tool
ToolHandle< InDet::IInDetTrackSelectionTool > m_tool
Definition:
InDetTrackSelectionToolWrapper.h:32
SG::ReadHandleKey< xAOD::TrackParticleContainer >
DerivationFramework::InDetTrackSelectionToolWrapper
Definition:
InDetTrackSelectionToolWrapper.h:22
python.utils.AtlRunQueryDQUtils.p
p
Definition:
AtlRunQueryDQUtils.py:210
WriteDecorHandleKey.h
Property holding a SG store/key/clid/attr name from which a WriteDecorHandle is made.
beamspotman.n
n
Definition:
beamspotman.py:731
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthAlgTool.h
DerivationFramework::InDetTrackSelectionToolWrapper::m_tracksKey
SG::ReadHandleKey< xAOD::TrackParticleContainer > m_tracksKey
Definition:
InDetTrackSelectionToolWrapper.h:35
DerivationFramework
THE reconstruction tool.
Definition:
ParticleSortingAlg.h:24
IInDetTrackSelectionTool.h
DerivationFramework::InDetTrackSelectionToolWrapper::initialize
StatusCode initialize()
Definition:
InDetTrackSelectionToolWrapper.cxx:26
DerivationFramework::InDetTrackSelectionToolWrapper::m_decorationKey
SG::WriteDecorHandleKey< xAOD::TrackParticleContainer > m_decorationKey
Definition:
InDetTrackSelectionToolWrapper.h:38
Generated on Thu Apr 24 2025 21:12:06 for ATLAS Offline Software by
1.8.18