The Gaudi Framework  v29r0 (ff2e7097)
H1D.h
Go to the documentation of this file.
1 #ifndef HISTOGRAMSVC_H1D_H
2 #define HISTOGRAMSVC_H1D_H 1
3 
4 #include "Generic1D.h"
5 #include <AIDA/IHistogram1D.h>
7 #include <TH1D.h>
8 
9 namespace Gaudi
10 {
11 
18  class GAUDI_API Histogram1D : public DataObject, public Gaudi::Generic1D<AIDA::IHistogram1D, TH1D>
19  {
20  private:
21  void init( const std::string& title, bool initialize_axis = true );
22  void initSums();
23 
24  protected:
26  double m_sumwx = 0;
27 
28  public:
30  Histogram1D();
32  Histogram1D( TH1D* rep );
33 
35  void adoptRepresentation( TObject* rep ) override;
37  virtual bool setBinContents( int i, int entries, double height, double error, double centre );
39  bool reset() override;
41  virtual bool setStatistics( int allEntries, double eqBinEntries, double mean, double rms );
43  bool fill( double x, double weight ) override;
45  bool setRms( double rms );
47  void copyFromAida( const AIDA::IHistogram1D& h );
49  const CLID& clID() const override { return classID(); }
50  static const CLID& classID() { return CLID_H1D; }
55  StreamBuffer& serialize( StreamBuffer& s );
56 
61  StreamBuffer& serialize( StreamBuffer& s ) const;
62 
63  }; // end class IHistogram1D
64 } // end namespace Gaudi
65 #endif // HISTOGRAMSVC_H1D_H
The stream buffer is a small object collecting object data.
Definition: StreamBuffer.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:35
const CLID & clID() const override
Retrieve reference to class defininition identifier.
Definition: H1D.h:49
STL class.
AIDA implementation for 1 D histograms using ROOT THD1.
Definition: H1D.h:18
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
static const CLID & classID()
Definition: H1D.h:50
string s
Definition: gaudirun.py:253
#define GAUDI_API
Definition: Kernel.h:110
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:29
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:36