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
AtlasTest
DatabaseTest
AthenaPoolTestData
AthenaPoolTestData
dummy_A.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
15
#ifndef ATHENAPOOLTESTDATA_DUMMY_A_H
16
# define ATHENAPOOLTESTDATA_DUMMY_A_H
17
18
//<<<<<< INCLUDES >>>>>>
19
20
#include "
AthenaKernel/CLASS_DEF.h
"
21
#include <vector>
22
23
//<<<<<< CLASS DECLARATIONS >>>>>>
24
32
class
dummy_C
{
33
public
:
34
dummy_C
() :
m_dummy
(10) {};
35
virtual
~dummy_C
() {};
36
unsigned
int
value
()
const
{
return
(
m_dummy
); }
37
private
:
38
unsigned
int
m_dummy
;
39
};
40
41
42
class
dummy_B
{
43
public
:
44
dummy_B
() :
m_dummy
(4) {};
45
virtual
~dummy_B
() {};
46
const
std::vector<dummy_C>&
dummy
()
const
{
return
m_dummy
;}
47
private
:
48
std::vector<dummy_C>
m_dummy
;
49
};
50
51
class
dummy_A
{
52
public
:
53
dummy_A
() :
m_dummy
(5) {};
54
virtual
~dummy_A
() {};
55
const
std::vector<dummy_B>&
dummy
()
const
{
return
m_dummy
;}
56
57
private
:
58
std::vector<dummy_B>
m_dummy
;
59
};
60
CLASS_DEF
(
dummy_A
, 153882670, 1)
61
62
63
//<<<<<< INLINE PUBLIC FUNCTIONS >>>>>>
64
//<<<<<< INLINE MEMBER FUNCTIONS >>>>>>
65
66
#endif // ATHENAPOOLTESTDATA_DUMMY_A_H
dummy_C::m_dummy
unsigned int m_dummy
Definition:
dummy_A.h:38
dummy_B::~dummy_B
virtual ~dummy_B()
Definition:
dummy_A.h:45
dummy_A::~dummy_A
virtual ~dummy_A()
Definition:
dummy_A.h:54
dummy_C::dummy_C
dummy_C()
Definition:
dummy_A.h:34
dummy_C::value
unsigned int value() const
Definition:
dummy_A.h:36
dummy_C
Definition:
dummy_A.h:32
dummy_B::dummy_B
dummy_B()
Definition:
dummy_A.h:44
dummy_B
Definition:
dummy_A.h:42
dummy_A::dummy_A
dummy_A()
Definition:
dummy_A.h:53
dummy_A
test nested vectors - problem seen in root3/4 transition
Definition:
dummy_A.h:51
dummy_A::m_dummy
std::vector< dummy_B > m_dummy
Definition:
dummy_A.h:58
dummy_B::m_dummy
std::vector< dummy_C > m_dummy
Definition:
dummy_A.h:48
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
dummy_C::~dummy_C
virtual ~dummy_C()
Definition:
dummy_A.h:35
dummy_A::dummy
const std::vector< dummy_B > & dummy() const
Definition:
dummy_A.h:55
CLASS_DEF.h
macros to associate a CLID to a type
dummy_B::dummy
const std::vector< dummy_C > & dummy() const
Definition:
dummy_A.h:46
Generated on Thu Apr 17 2025 21:09:52 for ATLAS Offline Software by
1.8.18