Gaudi Framework, version v23r6
Home
Generated: Wed Jan 30 2013
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
GaudiAlg
src
lib
GaudiHistoTool.cpp
Go to the documentation of this file.
1
// $Id: GaudiHistoTool.cpp,v 1.8 2007/11/20 13:01:06 marcocle Exp $
2
// ============================================================================
3
// Include files
4
// ============================================================================
5
// GaudiAlg
6
// ============================================================================
7
#include "
GaudiAlg/GaudiHistoTool.h
"
8
// ============================================================================
9
// GaudiKernel
10
// ============================================================================
11
#include "
GaudiKernel/IHistogramSvc.h
"
12
// ============================================================================
13
14
// ============================================================================
23
// ============================================================================
24
25
// ============================================================================
26
// Force creation of templated class
27
#include "
GaudiAlg/GaudiHistos.icpp
"
28
// ============================================================================
29
// Forward declaration of the actual constructors, to tell the compiler that
30
// they do exist and will be found at link time (warning C4661 in VC7.1)
31
// ============================================================================
32
template
<>
33
GaudiHistos<GaudiTool>::GaudiHistos
(
const
std::string
&
/* name */
,
34
ISvcLocator
*
/* pSvcLocator */
);
35
template
<>
36
GaudiHistos<GaudiTool>::GaudiHistos
(
const
std::string
&
type
,
37
const
std::string
& name ,
38
const
IInterface
* parent );
39
template
class
GaudiHistos<GaudiTool>
;
40
// ============================================================================
41
42
// ============================================================================
43
// Standard constructor
44
// ============================================================================
45
GaudiHistoTool::GaudiHistoTool
(
const
std::string
&
type
,
46
const
std::string
& name ,
47
const
IInterface
* parent )
48
:
GaudiHistos
<
GaudiTool
> ( type , name , parent ) { }
49
// ============================================================================
50
51
// ============================================================================
52
// destructor
53
// ============================================================================
54
GaudiHistoTool::~GaudiHistoTool
() { }
55
// ============================================================================
56
57
// ============================================================================
58
// standard initialization method
59
// ============================================================================
60
StatusCode
GaudiHistoTool::initialize
()
61
{
62
// initialize the base class and return
63
return
GaudiHistos<GaudiTool>::initialize
();
64
}
65
// ============================================================================
66
67
// ============================================================================
68
// standard finalization method
69
// ============================================================================
70
StatusCode
GaudiHistoTool::finalize
()
71
{
72
// finalize the base class and return
73
return
GaudiHistos<GaudiTool>::finalize
();
74
}
75
// ============================================================================
76
77
// ============================================================================
78
// The END
79
// ============================================================================
Generated at Wed Jan 30 2013 17:13:37 for Gaudi Framework, version v23r6 by
Doxygen
version 1.8.2 written by
Dimitri van Heesch
, © 1997-2004