CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
HistoDef Class Reference

#include <HistoDef.h>

Public Member Functions

 HistoDef ()
 
void init (ALIstring name)
 
float maximum () const
 
float minimum () const
 
ALIstring name () const
 
void setMaximum (float max)
 
void setMinimum (float min)
 
 ~HistoDef ()
 

Private Attributes

float theMax
 
float theMin
 
ALIstring theName
 

Detailed Description

Definition at line 17 of file HistoDef.h.

Constructor & Destructor Documentation

◆ HistoDef()

HistoDef::HistoDef ( )
inline

Definition at line 20 of file HistoDef.h.

20 {};

◆ ~HistoDef()

HistoDef::~HistoDef ( )
inline

Definition at line 22 of file HistoDef.h.

22 {};

Member Function Documentation

◆ init()

void HistoDef::init ( ALIstring  name)

Definition at line 12 of file HistoDef.cc.

References ALI_DBL_MAX, name(), theMax, theMin, and theName.

12  {
13  theName = name;
16 }
ALIstring theName
Definition: HistoDef.h:32
ALIstring name() const
Definition: HistoDef.h:24
float theMin
Definition: HistoDef.h:33
float theMax
Definition: HistoDef.h:34
const double ALI_DBL_MAX
Definition: CocoaGlobals.h:24

◆ maximum()

float HistoDef::maximum ( ) const
inline

Definition at line 26 of file HistoDef.h.

References theMax.

26 { return theMax; }
float theMax
Definition: HistoDef.h:34

◆ minimum()

float HistoDef::minimum ( ) const
inline

Definition at line 25 of file HistoDef.h.

References theMin.

25 { return theMin; }
float theMin
Definition: HistoDef.h:33

◆ name()

ALIstring HistoDef::name ( ) const
inline

Definition at line 24 of file HistoDef.h.

References theName.

Referenced by config.CFG::__str__(), validation.Sample::digest(), init(), and VIDSelectorBase.VIDSelectorBase::initialize().

24 { return theName; }
ALIstring theName
Definition: HistoDef.h:32

◆ setMaximum()

void HistoDef::setMaximum ( float  max)
inline

Definition at line 29 of file HistoDef.h.

References SiStripPI::max, and theMax.

◆ setMinimum()

void HistoDef::setMinimum ( float  min)
inline

Definition at line 28 of file HistoDef.h.

References SiStripPI::min, and theMin.

Member Data Documentation

◆ theMax

float HistoDef::theMax
private

Definition at line 34 of file HistoDef.h.

Referenced by init(), maximum(), and setMaximum().

◆ theMin

float HistoDef::theMin
private

Definition at line 33 of file HistoDef.h.

Referenced by init(), minimum(), and setMinimum().

◆ theName

ALIstring HistoDef::theName
private

Definition at line 32 of file HistoDef.h.

Referenced by init(), and name().