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