|
Gaudi Framework, version v23r4 |
| Home | Generated: Mon Sep 17 2012 |
Simple class to extend the functionality of class GaudiAlgorithm. More...
#include <GaudiAlg/GaudiHistoAlg.h>


Protected Member Functions | |
| GaudiHistoAlg (const std::string &name, ISvcLocator *pSvc) | |
| Standard constructor (protected) | |
| virtual | ~GaudiHistoAlg () |
| virtual destructor | |
| virtual StatusCode | initialize () |
| standard initialization method | |
| virtual StatusCode | finalize () |
| standard finalization method | |
Private Member Functions | |
| GaudiHistoAlg () | |
| GaudiHistoAlg (const GaudiHistoAlg &) | |
| GaudiHistoAlg & | operator= (const GaudiHistoAlg &) |
Simple class to extend the functionality of class GaudiAlgorithm.
Class is instrumented with a selection of plotting functions for easy creation of histograms.
Definition at line 38 of file GaudiHistoAlg.h.
| GaudiHistoAlg::GaudiHistoAlg | ( | const std::string & | name, |
| ISvcLocator * | pSvc | ||
| ) | [protected] |
Standard constructor (protected)
| name | name of the algorithm |
| pSvcLocator | poinetr to Service Locator |
Definition at line 41 of file GaudiHistoAlg.cpp.
: GaudiHistos<GaudiAlgorithm> ( name , pSvc ) { }
| GaudiHistoAlg::~GaudiHistoAlg | ( | ) | [protected, virtual] |
| GaudiHistoAlg::GaudiHistoAlg | ( | ) | [private] |
| GaudiHistoAlg::GaudiHistoAlg | ( | const GaudiHistoAlg & | ) | [private] |
| StatusCode GaudiHistoAlg::finalize | ( | ) | [protected, virtual] |
standard finalization method
Reimplemented from GaudiHistos< GaudiAlgorithm >.
Reimplemented in GaudiTupleAlg, and GaudiTuples< GaudiHistoAlg >.
Definition at line 65 of file GaudiHistoAlg.cpp.
{
// finalize the base class and return
return GaudiHistos<GaudiAlgorithm>::finalize();
}
| StatusCode GaudiHistoAlg::initialize | ( | ) | [protected, virtual] |
standard initialization method
Reimplemented from GaudiHistos< GaudiAlgorithm >.
Reimplemented in GaudiTupleAlg, and GaudiTuples< GaudiHistoAlg >.
Definition at line 55 of file GaudiHistoAlg.cpp.
{
// initialize the base class and return
return GaudiHistos<GaudiAlgorithm>::initialize();
}
| GaudiHistoAlg& GaudiHistoAlg::operator= | ( | const GaudiHistoAlg & | ) | [private] |