ATLAS Offline Software
Loading...
Searching...
No Matches
AthenaPoolTestD.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: AthenaPoolTestD.cxx,v 1.3 2005-01-10 15:50:19 cranshaw Exp $
15//<version> $Name: not supported by cvs2svn $
16
17//<<<<<< INCLUDES >>>>>>
18
20
21#include "CLHEP/Geometry/Point3D.h"
22#include <string>
23#include <sstream>
24
25//<<<<<< PRIVATE DEFINES >>>>>>
26//<<<<<< PRIVATE CONSTANTS >>>>>>
27//<<<<<< PRIVATE TYPES >>>>>>
28//<<<<<< PRIVATE VARIABLE DEFINITIONS >>>>>>
29//<<<<<< PUBLIC VARIABLE DEFINITIONS >>>>>>
30//<<<<<< CLASS STRUCTURE INITIALIZATION >>>>>>
31//<<<<<< PRIVATE FUNCTION DEFINITIONS >>>>>>
32//<<<<<< PUBLIC FUNCTION DEFINITIONS >>>>>>
33//<<<<<< MEMBER FUNCTION DEFINITIONS >>>>>>
34
36 :
38 m_e(0),
39 m_f(0)
40{
41}
42
43AthenaPoolTestD::AthenaPoolTestD(int a, int b, int c, int d, int e, int f)
44 :
45 AthenaPoolTestC(a, b, c, d),
46 m_e(e),
47 m_f(f)
48{
49}
50
54
55std::string
57{
58 std::stringstream stream;
59 stream << "AthenaPoolTestD::printWhoYouAre D - e, f "
60 << m_e << " " << m_f;
61 std::string result(stream.str());
62 result += " ";
64 return (result);
65}
66
Class definition for AthenaPoolTestD.
static Double_t a
virtual std::string printWhoYouAre(void) const
virtual ~AthenaPoolTestD(void)
virtual std::string printWhoYouAre(void) const