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
TrkEventCnv
TrkEventTPCnv
TrkEventTPCnv
TrkV0Vertex
V0CandidateCnv_p1.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef V0CANDIDATE_CNV_P1_H
6
#define V0CANDIDATE_CNV_P1_H
7
8
#include "
AthenaPoolCnvSvc/T_AthenaPoolTPConverter.h
"
9
10
#include "
TrkV0Vertex/V0Candidate.h
"
11
#include "
TrkEventTPCnv/TrkV0Vertex/V0Candidate_p1.h
"
12
#include "
TrkEventTPCnv/TrkV0Vertex/V0HypothesisCnv_p1.h
"
13
#include "
VxVertex/VxCandidate.h
"
14
15
16
class
MsgStream;
17
18
class
V0CandidateCnv_p1
:
public
T_AthenaPoolTPCnvBase
< Trk::V0Candidate, Trk::V0Candidate_p1> {
19
public
:
20
21
V0CandidateCnv_p1
() {}
22
23
void
persToTrans
(
const
Trk::V0Candidate_p1
* persObj,
Trk::V0Candidate
* transObj, MsgStream &
log
);
24
void
transToPers
(
const
Trk::V0Candidate
* transObj,
Trk::V0Candidate_p1
* persObj, MsgStream &
log
);
25
26
virtual
void
initPrivateConverters
(
AthenaPoolTopLevelTPCnvBase
*topCnv ) {
27
m_v0HypothesisVectorCnv
.
setTopConverter
( topCnv, 0 );
28
}
29
30
private
:
31
32
//V0HypothesisCnv_p1 * m_v0HypothesisConverter;
33
34
// typedef T_AthenaPoolTPPtrVectorCnv< std::vector<Trk::V0Hypothesis *>,
35
// std::vector<TPObjRef>,
36
// ITPConverterFor<Trk::V0Hypothesis> > V0HypothesisVectorCnv_p1;
37
38
typedef
T_AthenaPoolTPPtrVectorCnv< std::vector<Trk::VxCandidate *>
, std::vector<TPObjRef>,
ITPConverterFor<Trk::VxCandidate>
>
V0HypothesisVectorCnv_p1
;
39
40
V0HypothesisVectorCnv_p1
m_v0HypothesisVectorCnv
;
41
};
42
43
#endif
ITPConverterFor< Trk::VxCandidate >
V0Candidate.h
Trk::V0Candidate_p1
Definition:
V0Candidate_p1.h:22
TPConverterBase
Definition:
TPConverter.h:738
V0CandidateCnv_p1::persToTrans
void persToTrans(const Trk::V0Candidate_p1 *persObj, Trk::V0Candidate *transObj, MsgStream &log)
Definition:
V0CandidateCnv_p1.cxx:8
V0CandidateCnv_p1::initPrivateConverters
virtual void initPrivateConverters(AthenaPoolTopLevelTPCnvBase *topCnv)
Definition:
V0CandidateCnv_p1.h:26
V0HypothesisCnv_p1.h
V0Candidate_p1.h
V0CandidateCnv_p1::V0HypothesisVectorCnv_p1
T_AthenaPoolTPPtrVectorCnv< std::vector< Trk::VxCandidate * >, std::vector< TPObjRef >, ITPConverterFor< Trk::VxCandidate > > V0HypothesisVectorCnv_p1
Definition:
V0CandidateCnv_p1.h:38
V0CandidateCnv_p1::transToPers
void transToPers(const Trk::V0Candidate *transObj, Trk::V0Candidate_p1 *persObj, MsgStream &log)
Definition:
V0CandidateCnv_p1.cxx:30
T_AthenaPoolTPConverter.h
VxCandidate.h
TopLevelTPCnvBase
Base class for top-level TP converters.
Definition:
TopLevelTPCnvBase.h:32
ITPConverterFor::setTopConverter
virtual void setTopConverter(TopLevelTPCnvBase *topConverter, const TPObjRef::typeID_t &TPtypeID)
Set which top-level converter owns this elemental converter, and what TPtypeID was assigned to the pe...
Definition:
TPConverter.h:221
V0CandidateCnv_p1
Definition:
V0CandidateCnv_p1.h:18
V0CandidateCnv_p1::m_v0HypothesisVectorCnv
V0HypothesisVectorCnv_p1 m_v0HypothesisVectorCnv
Definition:
V0CandidateCnv_p1.h:40
python.CaloCondTools.log
log
Definition:
CaloCondTools.py:20
TPPtrVectorCnv
Definition:
TPConverter.h:919
Trk::V0Candidate
Definition:
V0Candidate.h:33
V0CandidateCnv_p1::V0CandidateCnv_p1
V0CandidateCnv_p1()
Definition:
V0CandidateCnv_p1.h:21
Generated on Mon Mar 31 2025 21:22:47 for ATLAS Offline Software by
1.8.18