The Gaudi Framework  v30r3 (a5ef0a68)
P2D.h
Go to the documentation of this file.
1 #ifndef GAUDICOMMONSVC_P2D_H
2 #define GAUDICOMMONSVC_P2D_H
3 
4 #include "Generic2D.h"
5 #include <AIDA/IProfile1D.h>
7 #include <TProfile2D.h>
8 
9 namespace Gaudi
10 {
11 
18  class GAUDI_API Profile2D : public DataObject, public Generic2D<AIDA::IProfile2D, TProfile2D>
19  {
20  public:
22  Profile2D() : Base( new TProfile2D() )
23  {
24  m_classType = "IProfile2D";
25  m_rep->SetErrorOption( "s" );
26  m_rep->SetDirectory( nullptr );
27  }
29  Profile2D( TProfile2D* rep );
30 
32  bool fill( double x, double y, double z, double weight ) override
33  {
34  m_rep->Fill( x, y, z, weight );
35  return true;
36  }
38  const CLID& clID() const override { return classID(); }
39  static const CLID& classID() { return CLID_ProfileH2; }
40  };
41 }
42 
43 #endif
AIDA implementation for 2 D profiles using ROOT TProfile2D.
Definition: P2D.h:18
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
const CLID & clID() const override
Retrieve reference to class defininition identifier.
Definition: P2D.h:38
static const CLID & classID()
Definition: P2D.h:39
Profile2D()
Default Constructor.
Definition: P2D.h:22
#define GAUDI_API
Definition: Kernel.h:104
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
bool fill(double x, double y, double z, double weight) override
Fill bin content.
Definition: P2D.h:32
Common AIDA implementation stuff for histograms and profiles using ROOT implementations.
Definition: Generic2D.h:36