ATLAS Offline Software
Loading...
Searching...
No Matches
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
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
34 :
35 m_a(0),
36 m_b(0)
37{
38}
39
41 :
42 m_a(a),
43 m_b(b)
44{
45}
46
50
51std::string
53{
54 std::stringstream stream;
55 stream << "AthenaPoolTestA::printWhoYouAre A - a, b "
56 << m_a << " " << m_b;
57 return (stream.str());
58}
59
Class definition for AthenaPoolTestA.
static Double_t a
virtual ~AthenaPoolTestA(void)
virtual std::string printWhoYouAre(void) const