Loading [MathJax]/jax/output/SVG/config.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
Tracking
Acts
ActsTruth
src
TrackFindingValidationAlg.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef ACTSTRK_TRACKFINDINGVALIDATIONALG_H
6
#define ACTSTRK_TRACKFINDINGVALIDATIONALG_H 1
7
8
#undef NDEBUG
9
// Base Class
10
#include "
AthenaBaseComps/AthReentrantAlgorithm.h
"
11
12
// Gaudi includes
13
#include "Gaudi/Property.h"
14
15
// Handle Keys
16
#include "
StoreGate/ReadHandleKey.h
"
17
18
#include "
TrackTruthMatchingBaseAlg.h
"
19
#include "
ActsEvent/TrackToTruthParticleAssociation.h
"
20
21
namespace
ActsTrk
22
{
23
class
TrackFindingValidationAlg
:
public
TrackTruthMatchingBaseAlg
24
{
25
public
:
26
using
TrackTruthMatchingBaseAlg::TrackTruthMatchingBaseAlg
;
27
28
virtual
StatusCode
initialize
()
override
;
29
virtual
StatusCode
finalize
()
override
;
30
virtual
StatusCode
execute
(
const
EventContext &ctx)
const override
;
31
32
private
:
33
SG::ReadHandleKey<TrackToTruthParticleAssociation>
m_trackToTruth
34
{
this
,
"TrackToTruthAssociationMap"
,
""
,
"Association map from tracks to generator particles."
};
35
};
36
37
}
// namespace
38
39
#endif
ReadHandleKey.h
Property holding a SG store/key/clid from which a ReadHandle is made.
SG::ReadHandleKey
Property holding a SG store/key/clid from which a ReadHandle is made.
Definition:
StoreGate/StoreGate/ReadHandleKey.h:39
ActsTrk::TrackFindingValidationAlg::m_trackToTruth
SG::ReadHandleKey< TrackToTruthParticleAssociation > m_trackToTruth
Definition:
TrackFindingValidationAlg.h:34
TrackToTruthParticleAssociation.h
ActsTrk::TrackFindingValidationAlg::initialize
virtual StatusCode initialize() override
Definition:
TrackFindingValidationAlg.cxx:10
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ActsTrk::TrackFindingValidationAlg::execute
virtual StatusCode execute(const EventContext &ctx) const override
Definition:
TrackFindingValidationAlg.cxx:23
ActsTrk::TrackFindingValidationAlg::finalize
virtual StatusCode finalize() override
Definition:
TrackFindingValidationAlg.cxx:17
AthReentrantAlgorithm.h
TrackTruthMatchingBaseAlg.h
ActsTrk::TrackTruthMatchingBaseAlg::TrackTruthMatchingBaseAlg
TrackTruthMatchingBaseAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
TrackTruthMatchingBaseAlg.cxx:129
ActsTrk
The AlignStoreProviderAlg loads the rigid alignment corrections and pipes them through the readout ge...
Definition:
MuonDetectorBuilderTool.cxx:55
ActsTrk::TrackTruthMatchingBaseAlg
Definition:
TrackTruthMatchingBaseAlg.h:45
ActsTrk::TrackFindingValidationAlg
Definition:
TrackFindingValidationAlg.h:24
Generated on Tue Mar 25 2025 21:20:54 for ATLAS Offline Software by
1.8.18