|
Gaudi Framework, version v22r4 |
| Home | Generated: Fri Sep 2 2011 |
Simple class to extend the functionality of class GaudiTool. More...
#include <GaudiTools/GaudiHistoTool.h>


Protected Member Functions | |
| GaudiHistoTool (const std::string &type, const std::string &name, const IInterface *parent) | |
| Standard constructor (protected) | |
| virtual | ~GaudiHistoTool () |
| destructor, virtual and protected | |
| virtual StatusCode | initialize () |
| standard initialization method | |
| virtual StatusCode | finalize () |
| standard finalization method | |
Private Member Functions | |
| GaudiHistoTool () | |
| GaudiHistoTool (const GaudiHistoTool &) | |
| GaudiHistoTool & | operator= (const GaudiHistoTool &) |
Simple class to extend the functionality of class GaudiTool.
Class is instrumented with a selection of plotting functions for easy creation of histograms.
Definition at line 44 of file GaudiHistoTool.h.
| GaudiHistoTool::GaudiHistoTool | ( | const std::string & | type, |
| const std::string & | name, | ||
| const IInterface * | parent | ||
| ) | [protected] |
Standard constructor (protected)
| type | tool type (useless) |
| name | tool name |
| parent | pointer to parent object (service, algorithm or tool) |
Definition at line 45 of file GaudiHistoTool.cpp.
: GaudiHistos<GaudiTool> ( type , name , parent ) { }
| GaudiHistoTool::~GaudiHistoTool | ( | ) | [protected, virtual] |
| GaudiHistoTool::GaudiHistoTool | ( | ) | [private] |
| GaudiHistoTool::GaudiHistoTool | ( | const GaudiHistoTool & | ) | [private] |
| StatusCode GaudiHistoTool::finalize | ( | void | ) | [protected, virtual] |
standard finalization method
Reimplemented from GaudiHistos< GaudiTool >.
Reimplemented in GaudiTupleTool, and GaudiTuples< GaudiHistoTool >.
Definition at line 70 of file GaudiHistoTool.cpp.
{
// finalize the base class and return
return GaudiHistos<GaudiTool>::finalize();
}
| StatusCode GaudiHistoTool::initialize | ( | void | ) | [protected, virtual] |
standard initialization method
Reimplemented from GaudiHistos< GaudiTool >.
Reimplemented in GaudiTupleTool, and GaudiTuples< GaudiHistoTool >.
Definition at line 60 of file GaudiHistoTool.cpp.
{
// initialize the base class and return
return GaudiHistos<GaudiTool>::initialize();
}
| GaudiHistoTool& GaudiHistoTool::operator= | ( | const GaudiHistoTool & | ) | [private] |