PandaRoot
RhoHTRange< T > Class Template Reference

#include <RhoColumn.h>

Public Member Functions

 RhoHTRange ()
 
 RhoHTRange (T lowerv, T upperv)
 
 RhoHTRange (const RhoHTRange< T > &o)
 
virtual ~RhoHTRange ()
 
RhoHTRange< T > & operator= (const RhoHTRange< T > &o)
 
Bool_t operator() () const
 
lower () const
 
upper () const
 

Detailed Description

template<class T>
class RhoHTRange< T >

Definition at line 28 of file RhoColumn.h.

Constructor & Destructor Documentation

◆ RhoHTRange() [1/3]

template<class T>
RhoHTRange< T >::RhoHTRange ( )
inline

Definition at line 42 of file RhoColumn.h.

42 : fDefined(kFALSE), fLower(0), fUpper(0) {}

◆ RhoHTRange() [2/3]

template<class T>
RhoHTRange< T >::RhoHTRange ( lowerv,
upperv 
)
inline

Definition at line 44 of file RhoColumn.h.

44 : fDefined(kTRUE), fLower(lowerv), fUpper(upperv) {}

◆ RhoHTRange() [3/3]

template<class T>
RhoHTRange< T >::RhoHTRange ( const RhoHTRange< T > &  o)
inline

Definition at line 47 of file RhoColumn.h.

47 : fDefined(o.fDefined), fLower(o.fLower), fUpper(o.fUpper) {}

◆ ~RhoHTRange()

template<class T>
virtual RhoHTRange< T >::~RhoHTRange ( )
inlinevirtual

Definition at line 50 of file RhoColumn.h.

50 {}

Member Function Documentation

◆ lower()

template<class T>
T RhoHTRange< T >::lower ( ) const
inline

Definition at line 69 of file RhoColumn.h.

69 { return fLower; }

◆ operator()()

template<class T>
Bool_t RhoHTRange< T >::operator() ( ) const
inline

Definition at line 66 of file RhoColumn.h.

Referenced by RhoHTAbsValVector< T >::~RhoHTAbsValVector().

66 { return fDefined; }

◆ operator=()

template<class T>
RhoHTRange<T>& RhoHTRange< T >::operator= ( const RhoHTRange< T > &  o)
inline

Definition at line 54 of file RhoColumn.h.

55  {
56  if (&o == this) {
57  return *this;
58  }
59  fDefined = o.fDefined;
60  fLower = o.fLower;
61  fUpper = o.fUpper;
62  return *this;
63  }

◆ upper()

template<class T>
T RhoHTRange< T >::upper ( ) const
inline

Definition at line 70 of file RhoColumn.h.

70 { return fUpper; }

The documentation for this class was generated from the following file: