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
src
AthenaPoolTestA.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
9
/***************************************************************************
10
Athena Pool Test Data package
11
-----------------------------------------
12
***************************************************************************/
13
14
//<doc><file> $Id: AthenaPoolTestA.cxx,v 1.4 2005-01-10 15:50:19 cranshaw Exp $
15
//<version> $Name: not supported by cvs2svn $
16
17
//<<<<<< INCLUDES >>>>>>
18
19
#include "
AthenaPoolTestData/AthenaPoolTestA.h
"
20
21
#include <sstream>
22
23
//<<<<<< PRIVATE DEFINES >>>>>>
24
//<<<<<< PRIVATE CONSTANTS >>>>>>
25
//<<<<<< PRIVATE TYPES >>>>>>
26
//<<<<<< PRIVATE VARIABLE DEFINITIONS >>>>>>
27
//<<<<<< PUBLIC VARIABLE DEFINITIONS >>>>>>
28
//<<<<<< CLASS STRUCTURE INITIALIZATION >>>>>>
29
//<<<<<< PRIVATE FUNCTION DEFINITIONS >>>>>>
30
//<<<<<< PUBLIC FUNCTION DEFINITIONS >>>>>>
31
//<<<<<< MEMBER FUNCTION DEFINITIONS >>>>>>
32
33
AthenaPoolTestA::AthenaPoolTestA
()
34
:
35
m_a(0),
36
m_b(0)
37
{
38
}
39
40
AthenaPoolTestA::AthenaPoolTestA
(
int
a
,
int
b
)
41
:
42
m_a(
a
),
43
m_b(
b
)
44
{
45
}
46
47
AthenaPoolTestA::~AthenaPoolTestA
(
void
)
48
{
49
}
50
51
std::string
52
AthenaPoolTestA::printWhoYouAre
(
void
)
const
53
{
54
std::stringstream
stream
;
55
stream
<<
"AthenaPoolTestA::printWhoYouAre A - a, b "
56
<<
m_a
<<
" "
<<
m_b
;
57
return
(
stream
.str());
58
}
59
AthenaPoolTestA.h
Class definition for AthenaPoolTestA.
AthenaPoolTestWrite.stream
string stream
Definition:
AthenaPoolTestWrite.py:12
AthenaPoolTestA::AthenaPoolTestA
AthenaPoolTestA()
Definition:
AthenaPoolTestA.cxx:33
AthenaPoolTestA::m_b
int m_b
Definition:
AthenaPoolTestA.h:53
plotBeamSpotMon.b
b
Definition:
plotBeamSpotMon.py:77
a
TList * a
Definition:
liststreamerinfos.cxx:10
AthenaPoolTestA::m_a
int m_a
Definition:
AthenaPoolTestA.h:52
AthenaPoolTestA::printWhoYouAre
virtual std::string printWhoYouAre(void) const
Definition:
AthenaPoolTestA.cxx:52
AthenaPoolTestA::~AthenaPoolTestA
virtual ~AthenaPoolTestA(void)
Definition:
AthenaPoolTestA.cxx:47
Generated on Thu Mar 13 2025 21:07:26 for ATLAS Offline Software by
1.8.18