NTuple::Range< TYP > Class Template Reference
#include <NTuple.h>
List of all members.
Detailed Description
template<class TYP>
class NTuple::Range< TYP >
Class defining a range.
Definition at line 49 of file NTuple.h.
|
Public Member Functions |
| | Range (const TYP low, const TYP upper) |
| | Standard constructor.
|
| | Range (const Range< TYP > ©) |
| | Copy constructor.
|
| Range & | operator= (const Range< TYP > ©) |
| | Adjust ranges.
|
| virtual | ~Range () |
| | Destructor.
|
| TYP | lower () const |
| | Lower boundary of range.
|
| TYP | upper () const |
| | Upper boundary of range.
|
| TYP | distance () const |
| | Distance between lower and upper range.
|
| template<> |
| IOpaqueAddress * | min () |
| template<> |
| IOpaqueAddress * | max () |
Static Public Member Functions |
| static TYP | min () |
| | Minimal number of data.
|
| static TYP | max () |
| | Maximal number of data.
|
Private Attributes |
| TYP | m_lower |
| | Lower boundary of range.
|
| TYP | m_upper |
| | Upper boundary of range.
|
Constructor & Destructor Documentation
Standard constructor.
Definition at line 56 of file NTuple.h.
Copy constructor.
Definition at line 59 of file NTuple.h.
Destructor.
Definition at line 69 of file NTuple.h.
Member Function Documentation
Adjust ranges.
Definition at line 63 of file NTuple.h.
00063 {
00064 m_lower = copy.m_lower;
00065 m_upper = copy.m_upper;
00066 return *this;
00067 }
Lower boundary of range.
Definition at line 71 of file NTuple.h.
Upper boundary of range.
Definition at line 73 of file NTuple.h.
Distance between lower and upper range.
Definition at line 75 of file NTuple.h.
Minimal number of data.
Definition at line 77 of file NTuple.h.
Maximal number of data.
Definition at line 79 of file NTuple.h.
00079 { return std::numeric_limits<TYP>::max() ; }
Member Data Documentation
Lower boundary of range.
Definition at line 51 of file NTuple.h.
Upper boundary of range.
Definition at line 53 of file NTuple.h.
The documentation for this class was generated from the following file:
- /afs/cern.ch/sw/Gaudi/releases/GAUDI/GAUDI_v20r4/GaudiKernel/GaudiKernel/NTuple.h