|
Gaudi Framework, version v21r7p1 |
| Home | Generated: 15 Feb 2010 |


Public Member Functions | |
| Profile2D () | |
| Default Constructor. | |
| Profile2D (TProfile2D *rep) | |
| Default Constructor with representation object. | |
| virtual | ~Profile2D () |
| Destructor. | |
| bool | fill (double x, double y, double z, double weight) |
| Fill bin content. | |
| virtual const CLID & | clID () const |
| Retrieve reference to class defininition identifier. | |
Static Public Member Functions | |
| static const CLID & | classID () |
| Retrieve reference to class definition structure (static access). | |
Definition at line 16 of file P2D.cpp.
| Gaudi::Profile2D::Profile2D | ( | ) | [inline] |
Default Constructor.
Definition at line 19 of file P2D.cpp.
00019 { 00020 m_classType = "IProfile2D"; 00021 m_rep = new TProfile2D(); 00022 m_rep->SetErrorOption("s"); 00023 m_rep->SetDirectory(0); 00024 m_sumEntries = 0; 00025 }
| Gaudi::Profile2D::Profile2D | ( | TProfile2D * | rep | ) |
Default Constructor with representation object.
Definition at line 94 of file P2D.cpp.
00094 { 00095 m_rep = 0; 00096 m_classType = "IProfile2D"; 00097 rep->SetDirectory(0); 00098 adoptRepresentation(rep); 00099 m_sumEntries = 0; 00100 }
| virtual Gaudi::Profile2D::~Profile2D | ( | ) | [inline, virtual] |
| bool Gaudi::Profile2D::fill | ( | double | x, | |
| double | y, | |||
| double | z, | |||
| double | weight | |||
| ) | [inline] |
| virtual const CLID& Gaudi::Profile2D::clID | ( | ) | const [inline, virtual] |
Retrieve reference to class defininition identifier.
Reimplemented from DataObject.
Definition at line 36 of file P2D.cpp.
00036 { return Gaudi::Profile2D::classID(); }
| static const CLID& Gaudi::Profile2D::classID | ( | ) | [inline, static] |
Retrieve reference to class definition structure (static access).
Retrieve Pointer to class definition structure.
Reimplemented from DataObject.
Definition at line 37 of file P2D.cpp.
00037 { return CLID_ProfileH2; }