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 40 of file RhoColumn.h.

Constructor & Destructor Documentation

◆ RhoHTRange() [1/3]

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

Definition at line 54 of file RhoColumn.h.

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

◆ RhoHTRange() [2/3]

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

Definition at line 56 of file RhoColumn.h.

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

◆ RhoHTRange() [3/3]

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

Definition at line 59 of file RhoColumn.h.

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

◆ ~RhoHTRange()

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

Definition at line 62 of file RhoColumn.h.

62 {}

Member Function Documentation

◆ lower()

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

Definition at line 81 of file RhoColumn.h.

81 { return fLower; }

◆ operator()()

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

Definition at line 78 of file RhoColumn.h.

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

78 { return fDefined; }

◆ operator=()

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

Definition at line 66 of file RhoColumn.h.

67  {
68  if (&o == this) {
69  return *this;
70  }
71  fDefined = o.fDefined;
72  fLower = o.fLower;
73  fUpper = o.fUpper;
74  return *this;
75  }

◆ upper()

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

Definition at line 82 of file RhoColumn.h.

82 { return fUpper; }

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