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  ~Profile1D() override = default;
32  bool fill(double x, double y, double weight = 1.) override;
33  virtual bool setBinContents(int i, int entries,double height,double error, double spread, double centre);
35  const CLID& clID() const override { return classID(); }
36  static const CLID& classID() { return CLID_ProfileH; }
37  }; // end class IProfile1D
38 } // end namespace Gaudi
39 
40 #endif // GAUDISVC_P1D_H
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:36
STL class.
const CLID & clID() const override
Retrieve reference to class defininition identifier.
Definition: P1D.h:35
static const CLID & classID()
Definition: P1D.h:36
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
AIDA::IAnnotation IAnnotation
Definition: P1D.h:21
#define GAUDI_API
Definition: Kernel.h:107
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:30
Helper functions to set/get the application return code.
Definition: __init__.py:1
Common AIDA implementation stuff for histograms and profiles using ROOT implementations.
Definition: Generic1D.h:37