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
Tracking
TrkEvent
TrkTruthData
TrkTruthData
DetailedTrackTruthCollection.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
// Dear emacs, this is -*-c++-*-
6
#ifndef DETAILEDTRACKTRUTHCOLLECTION_H
7
#define DETAILEDTRACKTRUTHCOLLECTION_H
8
9
#include "
TrkTruthData/TrackTruthKey.h
"
10
#include "
TrkTruthData/DetailedTrackTruth.h
"
11
#include "
TrkTrack/TrackCollection.h
"
12
#include "AthLinks/DataLink.h"
13
#include "
AthenaKernel/CLASS_DEF.h
"
14
15
#include <map>
16
17
class
TrackTruthCollectionAccessor
;
18
19
class
DetailedTrackTruthCollection
:
public
std::multimap<Trk::TrackTruthKey, DetailedTrackTruth>
20
{
21
friend
class
TrackTruthCollectionAccessor
;
// in TrackTruthTPCnv
22
DataLink<TrackCollection>
m_trackCollection
;
23
public
:
24
DetailedTrackTruthCollection
(
const
DataLink<TrackCollection>
tracks) :
m_trackCollection
(tracks) {}
25
DataLink<TrackCollection>
trackCollectionLink
()
const
{
return
m_trackCollection
; }
26
void
setTrackCollection
(
const
DataLink<TrackCollection>
tracks){
m_trackCollection
=tracks;}
27
28
// for POOL
29
DetailedTrackTruthCollection
() {}
30
};
31
32
33
CLASS_DEF
(
DetailedTrackTruthCollection
, 1289199392, 1)
34
35
#endif
/*DETAILEDTRACKTRUTHCOLLECTION_H*/
TrackTruthKey.h
DataLink
Object reference supporting deferred reading from StoreGate.
Definition:
AthLinks/DataLink.h:93
TrackCollection.h
DetailedTrackTruthCollection::DetailedTrackTruthCollection
DetailedTrackTruthCollection(const DataLink< TrackCollection > tracks)
Definition:
DetailedTrackTruthCollection.h:24
DetailedTrackTruth.h
DetailedTrackTruthCollection::m_trackCollection
DataLink< TrackCollection > m_trackCollection
Definition:
DetailedTrackTruthCollection.h:22
DetailedTrackTruthCollection::setTrackCollection
void setTrackCollection(const DataLink< TrackCollection > tracks)
Definition:
DetailedTrackTruthCollection.h:26
TrackTruthCollectionAccessor
Definition:
TrackTruthCollectionAccessor.h:16
DetailedTrackTruthCollection::trackCollectionLink
DataLink< TrackCollection > trackCollectionLink() const
Definition:
DetailedTrackTruthCollection.h:25
CLASS_DEF
#define CLASS_DEF(NAME, CID, VERSION)
associate a clid and a version to a type eg
Definition:
Control/AthenaKernel/AthenaKernel/CLASS_DEF.h:67
DetailedTrackTruthCollection
Definition:
DetailedTrackTruthCollection.h:20
CLASS_DEF.h
macros to associate a CLID to a type
DetailedTrackTruthCollection::DetailedTrackTruthCollection
DetailedTrackTruthCollection()
Definition:
DetailedTrackTruthCollection.h:29
Generated on Tue Mar 25 2025 21:09:35 for ATLAS Offline Software by
1.8.18