#include <HistoDef.h>
Public Member Functions | |
HistoDef () | |
HistoDef () | |
void | init (ALIstring name) |
void | init (ALIstring name) |
float | maximum () const |
float | maximum () const |
float | minimum () const |
float | minimum () const |
ALIstring | name () const |
ALIstring | name () const |
void | setMaximum (float max) |
void | setMaximum (float max) |
void | setMinimum (float min) |
void | setMinimum (float min) |
~HistoDef () | |
~HistoDef () | |
Private Attributes | |
float | theMax |
float | theMin |
ALIstring | theName |
Definition at line 17 of file HistoDef.h.
HistoDef::HistoDef | ( | ) | [inline] |
Definition at line 22 of file HistoDef.h.
{ };
HistoDef::~HistoDef | ( | ) | [inline] |
Definition at line 24 of file HistoDef.h.
{ };
HistoDef::HistoDef | ( | ) | [inline] |
Definition at line 22 of file HistoDef.h.
{ };
HistoDef::~HistoDef | ( | ) | [inline] |
Definition at line 24 of file HistoDef.h.
{ };
void HistoDef::init | ( | ALIstring | name | ) |
Definition at line 12 of file HistoDef.cc.
References ALI_DBL_MAX, name(), theMax, theMin, and theName.
{ theName = name; theMin = ALI_DBL_MAX; theMax = -ALI_DBL_MAX; }
void HistoDef::init | ( | ALIstring | name | ) |
float HistoDef::maximum | ( | ) | const [inline] |
float HistoDef::maximum | ( | ) | const [inline] |
float HistoDef::minimum | ( | ) | const [inline] |
float HistoDef::minimum | ( | ) | const [inline] |
ALIstring HistoDef::name | ( | ) | const [inline] |
Definition at line 26 of file HistoDef.h.
References theName.
Referenced by init().
{ return theName; }
ALIstring HistoDef::name | ( | ) | const [inline] |
void HistoDef::setMaximum | ( | float | max | ) | [inline] |
void HistoDef::setMaximum | ( | float | max | ) | [inline] |
void HistoDef::setMinimum | ( | float | min | ) | [inline] |
void HistoDef::setMinimum | ( | float | min | ) | [inline] |
float HistoDef::theMax [private] |
Definition at line 46 of file HistoDef.h.
Referenced by init(), maximum(), and setMaximum().
float HistoDef::theMin [private] |
Definition at line 45 of file HistoDef.h.
Referenced by init(), minimum(), and setMinimum().
ALIstring HistoDef::theName [private] |
Definition at line 44 of file HistoDef.h.