All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
P1D.h
Go to the documentation of this file.
1 #ifndef GAUDISVC_P1D_H
2 #define GAUDISVC_P1D_H
3 
5 #include "GaudiPI.h"
6 #include "Generic1D.h"
7 #include "TProfile.h"
8 
9 /*
10  * Gaudi namespace
11  */
12 namespace Gaudi {
13 
20  class GAUDI_API Profile1D : public DataObject, public Generic1D<AIDA::IProfile1D,TProfile> {
21  typedef AIDA::IAnnotation IAnnotation;
22  private:
23  void init(const std::string& title, bool initialize_axis=true);
24  public:
26  Profile1D();
28  Profile1D(TProfile* rep);
30  virtual ~Profile1D() { }
32  virtual bool fill(double x, double y, double weight = 1.);
33  virtual bool setBinContents(int i, int entries,double height,double error, double spread, double centre);
35  virtual const CLID& clID() const { return classID(); }
36  static const CLID& classID() { return CLID_ProfileH; }
37  }; // end class IProfile1D
38 } // end namespace Gaudi
39 
40 #endif // GAUDISVC_P1D_H
virtual ~Profile1D()
Destructor.
Definition: P1D.h:30
AIDA implementation for 1 D profiles using ROOT TProfile.
Definition: P1D.h:20
GAUDI_API void fill(AIDA::IHistogram1D *histo, const double value, const double weight=1.0)
simple function to fill AIDA::IHistogram1D objects
Definition: Fill.cpp:37
static const CLID & classID()
Definition: P1D.h:36
virtual const CLID & clID() const
Retrieve reference to class defininition identifier.
Definition: P1D.h:35
unsigned int CLID
Class ID definition.
Definition: ClassID.h:9
AIDA::IAnnotation IAnnotation
Definition: P1D.h:21
This is a number of static methods for bootstrapping the Gaudi framework.
Definition: Bootstrap.h:15
#define GAUDI_API
Definition: Kernel.h:108
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:31
list i
Definition: ana.py:128
Common AIDA implementation stuff for histograms and profiles using ROOT implementations.
Definition: Generic1D.h:29