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
Trigger
TrigEvent
TrigInDetEventTPCnv
src
TrigVertexCountsCollectionCnv_tlp1.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/TrigVertexCountsCollectionCnv_tlp1.h
"
6
7
8
//constructor
9
TrigVertexCountsCollectionCnv_tlp1::TrigVertexCountsCollectionCnv_tlp1
(){
10
11
// add the "main" base class converter (ie. TrigVertexCountsCollectionCnv)
12
addMainTPConverter
();
13
14
// add all converters needed in the top level converter
15
// do not change the order of adding converters
16
addTPConverter
(&
m_trigVertexCountsCnv_p1
);
17
18
}
19
20
void
TrigVertexCountsCollectionCnv_tlp1::setPStorage
(
TrigVertexCountsCollection_tlp1
* storage ){
21
22
23
//for the base class converter
24
setMainCnvPStorage
( &storage->
m_trigVertexCountsCollectionVec
);
25
26
//for all other converters defined in the base class
27
m_trigVertexCountsCnv_p1
.
setPStorage
( &storage->
m_trigVertexCountsVec
);
28
}
29
30
31
TrigVertexCountsCollection_tlp1::m_trigVertexCountsCollectionVec
std::vector< TrigVertexCountsCollection_p1 > m_trigVertexCountsCollectionVec
Definition:
TrigVertexCountsCollection_tlp1.h:37
TPAbstractPolyCnvBase::setPStorage
void setPStorage(std::vector< PERS > *storage)
Tell this converter which storage vector it should use to store or retrieve persistent representation...
Definition:
TPConverter.h:551
TrigVertexCountsCollectionCnv_tlp1::m_trigVertexCountsCnv_p1
TrigVertexCountsCnv_p1 m_trigVertexCountsCnv_p1
Definition:
TrigVertexCountsCollectionCnv_tlp1.h:47
TrigVertexCountsCollection_tlp1::m_trigVertexCountsVec
std::vector< TrigVertexCounts_p1 > m_trigVertexCountsVec
Definition:
TrigVertexCountsCollection_tlp1.h:38
TopLevelTPConverter::addMainTPConverter
void addMainTPConverter()
Add the main TP converter to the internal list - should be called from user-defined constructor.
Definition:
TopLevelTPConverter.h:146
TopLevelTPCnvBase::addTPConverter
virtual void addTPConverter(ITPConverter *cnv)
Add a TP converter to this top level converter.
Definition:
TopLevelTPCnvBase.cxx:11
TrigVertexCountsCollectionCnv_tlp1.h
TrigVertexCountsCollection_tlp1
Definition:
TrigVertexCountsCollection_tlp1.h:22
TrigVertexCountsCollectionCnv_tlp1::TrigVertexCountsCollectionCnv_tlp1
TrigVertexCountsCollectionCnv_tlp1()
Definition:
TrigVertexCountsCollectionCnv_tlp1.cxx:9
TrigVertexCountsCollectionCnv_tlp1::setPStorage
virtual void setPStorage(TrigVertexCountsCollection_tlp1 *storage)
Definition:
TrigVertexCountsCollectionCnv_tlp1.cxx:20
TopLevelTPConverter::setMainCnvPStorage
void setMainCnvPStorage(STORAGE *storage)
Set the persistent storage space for the main TP converter.
Definition:
TopLevelTPConverter.h:152
Generated on Sun Apr 27 2025 21:22:05 for ATLAS Offline Software by
1.8.18