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