H2D.h
Go to the documentation of this file.
1 #ifndef HISTOGRAMSVC_H2D_H
2 #define HISTOGRAMSVC_H2D_H 1
3 
4 #include "AIDA/IHistogram2D.h"
6 #include <TH2D.h>
7 #include "Generic2D.h"
8 
9 namespace Gaudi {
10  class Histogram1D;
11 
18  class GAUDI_API Histogram2D : public DataObject, public Generic2D<AIDA::IHistogram2D,TH2D> {
19  public:
21  Histogram2D();
23  Histogram2D(TH2D* rep);
24 
26  bool fill(double x,double y,double weight = 1.) override;
28  virtual bool setBinContents(int binIndexX,int binIndexY,int entries,
29  double height,double error,double centreX,
30  double centreY );
32  bool setRms( double rmsX,double rmsY );
33  // overwrite reset
34  bool reset() override;
36  void copyFromAida(const AIDA::IHistogram2D& h);
38  const CLID& clID() const override { return classID(); }
39  static const CLID& classID() { return CLID_H2D; }
40  protected:
41  // cache sumwx and sumwy when setting contents since I don't have bin mean
42  double m_sumwx = 0;
43  double m_sumwy = 0;
44  };
45 }
46 #endif // HISTOGRAMSVC_H2D_H
static const CLID & classID()
Definition: H2D.h:39
const CLID & clID() const override
Retrieve reference to class defininition identifier.
Definition: H2D.h:38
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
AIDA implementation for 2 D histograms using ROOT THD2.
Definition: H2D.h:18
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
#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: Generic2D.h:35