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
Control
DataModelAthenaPool
DataModelAthenaPool
VectorElementLink_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 DATAMODELATHENAPOOL_VECTELEMENTLINK_P1_H
6
#define DATAMODELATHENAPOOL_VECTELEMENTLINK_P1_H
7
13
#include "
ElementLink_p3.h
"
14
20
#include <vector>
21
22
// Simulate template typedef - usa it as in GeneratePersVectorELinkType_p1
23
template
<
typename
INDEXTYPE>
24
struct
VectorElementLink_p1_t
{
25
typedef
std::vector< ElementLink_p3< INDEXTYPE > >
Type
;
26
};
27
28
29
// Helper template to generate type of the persistent VectorElementLink_pN<INDEXTYPE>
30
// from the type of the transient ElementLink
31
// Used in VectorElementlinkCnv_pN
32
33
template
<
class
TRANS_ELINK_VECT>
34
struct
GeneratePersVectorELinkType_p1
{
35
typedef
typename
VectorElementLink_p1_t<typename GenerateELinkIndexType_p3<typename TRANS_ELINK_VECT::value_type::index_type>::type
>
::Type
type
;
36
};
37
38
39
40
// If you define more VectorElementLink_pN types, remember to add template instantiations to the Dict file
41
42
typedef
VectorElementLink_p1_t<uint32_t>::Type
VectorElementLinkInt_p1
;
43
typedef
VectorElementLink_p1_t<std::string>::Type
VectorElementLinkStr_p1
;
44
45
46
#endif
47
48
49
ElementLink_p3.h
This file contains the class definition for the ElementLink_p3 class.
GeneratePersVectorELinkType_p1
Definition:
VectorElementLink_p1.h:34
VectorElementLinkInt_p1
VectorElementLink_p1_t< uint32_t >::Type VectorElementLinkInt_p1
Definition:
VectorElementLink_p1.h:42
VectorElementLink_p1_t::Type
std::vector< ElementLink_p3< INDEXTYPE > > Type
Definition:
VectorElementLink_p1.h:25
VectorElementLinkStr_p1
VectorElementLink_p1_t< std::string >::Type VectorElementLinkStr_p1
Definition:
VectorElementLink_p1.h:43
VectorElementLink_p1_t
Definition:
VectorElementLink_p1.h:24
GeneratePersVectorELinkType_p1::type
VectorElementLink_p1_t< typename GenerateELinkIndexType_p3< typename TRANS_ELINK_VECT::value_type::index_type >::type >::Type type
Definition:
VectorElementLink_p1.h:35
TScopeAdapter
Definition:
RootType.h:119
Generated on Tue Mar 18 2025 21:22:24 for ATLAS Offline Software by
1.8.18