Loading [MathJax]/jax/input/TeX/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
Trigger
TrigEvent
TrigInDetEventTPCnv
src
TrigInDetTrackCollectionCnv_tlp2.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include "
TrigInDetEventTPCnv/TrigInDetTrackCollectionCnv_tlp2.h
"
6
7
8
//constructor
9
TrigInDetTrackCollectionCnv_tlp2::TrigInDetTrackCollectionCnv_tlp2
(){
10
11
12
// add the "main" base class converter (ie. TrigInDetTrackCollectionCnv)
13
addMainTPConverter
();
14
15
// add all converters needed in the top level converter
16
// do not change the order of adding converters
17
addTPConverter
( &
m_trigInDetTrackFitParCnv
);
18
addTPConverter
( &
m_trigInDetTrackCnv
);
19
20
}
21
22
void
TrigInDetTrackCollectionCnv_tlp2::setPStorage
(
TrigInDetTrackCollection_tlp2
* storage ){
23
24
25
//for the base class converter
26
setMainCnvPStorage
( &storage->
m_trigInDetTrackCollections
);
27
28
//for all other converters defined in the base class
29
m_trigInDetTrackFitParCnv
.
setPStorage
( &storage->
m_trigInDetTrackFitPars
);
30
m_trigInDetTrackCnv
.
setPStorage
( &storage->
m_trigInDetTracks
);
31
32
}
33
TrigInDetTrackCollectionCnv_tlp2.h
TopLevelTPConverter::addMainTPConverter
void addMainTPConverter()
Add the main TP converter to the internal list - should be called from user-defined constructor.
Definition:
TopLevelTPConverter.h:146
TrigInDetTrackCollection_tlp2::m_trigInDetTrackCollections
std::vector< TrigInDetTrackCollection_p1 > m_trigInDetTrackCollections
Definition:
TrigInDetTrackCollection_tlp2.h:46
TrigInDetTrackCollectionCnv_tlp2::m_trigInDetTrackCnv
TrigInDetTrackCnv_p3 m_trigInDetTrackCnv
Definition:
TrigInDetTrackCollectionCnv_tlp2.h:56
TrigInDetTrackCollection_tlp2::m_trigInDetTracks
std::vector< TrigInDetTrack_p3 > m_trigInDetTracks
Definition:
TrigInDetTrackCollection_tlp2.h:48
TopLevelTPCnvBase::addTPConverter
virtual void addTPConverter(ITPConverter *cnv)
Add a TP converter to this top level converter.
Definition:
TopLevelTPCnvBase.cxx:11
TrigInDetTrackCollectionCnv_tlp2::m_trigInDetTrackFitParCnv
TrigInDetTrackFitParCnv_p3 m_trigInDetTrackFitParCnv
Definition:
TrigInDetTrackCollectionCnv_tlp2.h:57
TrigInDetTrackCollectionCnv_tlp2::TrigInDetTrackCollectionCnv_tlp2
TrigInDetTrackCollectionCnv_tlp2()
Definition:
TrigInDetTrackCollectionCnv_tlp2.cxx:9
TrigInDetTrackCollection_tlp2::m_trigInDetTrackFitPars
std::vector< TrigInDetTrackFitPar_p3 > m_trigInDetTrackFitPars
Definition:
TrigInDetTrackCollection_tlp2.h:47
TrigInDetTrackCollection_tlp2
Definition:
TrigInDetTrackCollection_tlp2.h:26
TopLevelTPConverter::setMainCnvPStorage
void setMainCnvPStorage(STORAGE *storage)
Set the persistent storage space for the main TP converter.
Definition:
TopLevelTPConverter.h:152
TrigInDetTrackCollectionCnv_tlp2::setPStorage
virtual void setPStorage(TrigInDetTrackCollection_tlp2 *storage)
Definition:
TrigInDetTrackCollectionCnv_tlp2.cxx:22
Generated on Mon Mar 17 2025 21:21:42 for ATLAS Offline Software by
1.8.18