Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
P1D.h
Go to the documentation of this file.
1 #ifndef GAUDISVC_P1D_H
2 #define GAUDISVC_P1D_H
3 
4 #include "Generic1D.h"
5 #include <AIDA/IProfile1D.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 
23  private:
24  void init( const std::string& title, bool initialize_axis = true );
25 
26  public:
28  Profile1D();
30  Profile1D( TProfile* rep );
31 
33  bool fill( double x, double y, double weight = 1. ) override;
34  virtual bool setBinContents( int i, int entries, double height, double error, double spread, double centre );
36  const CLID& clID() const override { return classID(); }
37  static const CLID& classID() { return CLID_ProfileH; }
38 
39  private:
41 
42  }; // end class IProfile1D
43 } // end namespace Gaudi
44 
45 #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:35
STL class.
const CLID & clID() const override
Retrieve reference to class defininition identifier.
Definition: P1D.h:36
static const CLID & classID()
Definition: P1D.h:37
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
std::mutex m_fillSerialization
Definition: P1D.h:40
AIDA::IAnnotation IAnnotation
Definition: P1D.h:21
#define GAUDI_API
Definition: Kernel.h:71
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:35