BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
HTRange< T > Class Template Reference

#include <HTRange.h>

Public Member Functions

 HTRange ()
 HTRange (T lower, T upper)
 HTRange (const HTRange< T > &o)
 ~HTRange ()
HTRange< T > & operator= (const HTRange< T > &o)
bool operator() () const
lower () const
upper () const
 HTRange ()
 HTRange (T lower, T upper)
 HTRange (const HTRange< T > &o)
 ~HTRange ()
HTRange< T > & operator= (const HTRange< T > &o)
bool operator() () const
lower () const
upper () const
 HTRange ()
 HTRange (T lower, T upper)
 HTRange (const HTRange< T > &o)
 ~HTRange ()
HTRange< T > & operator= (const HTRange< T > &o)
bool operator() () const
lower () const
upper () const

Detailed Description

template<class T>
class HTRange< T >

Definition at line 47 of file InstallArea/x86_64-el9-gcc13-dbg/include/MdcRecoUtil/HTRange.h.

Constructor & Destructor Documentation

◆ HTRange() [1/9]

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

Definition at line 61 of file InstallArea/x86_64-el9-gcc13-dbg/include/MdcRecoUtil/HTRange.h.

61: _defined( false ), _lower( 0 ), _upper( 0 ) {}

Referenced by HTRange(), and operator=().

◆ HTRange() [2/9]

template<class T>
HTRange< T >::HTRange ( T lower,
T upper )
inline

◆ HTRange() [3/9]

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

Definition at line 65 of file InstallArea/x86_64-el9-gcc13-dbg/include/MdcRecoUtil/HTRange.h.

66 : _defined( o._defined ), _lower( o._lower ), _upper( o._upper ) {}

◆ ~HTRange() [1/3]

template<class T>
HTRange< T >::~HTRange ( )
inline

◆ HTRange() [4/9]

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

Definition at line 61 of file InstallArea/x86_64-el9-gcc13-opt/include/MdcRecoUtil/HTRange.h.

61: _defined( false ), _lower( 0 ), _upper( 0 ) {}

◆ HTRange() [5/9]

template<class T>
HTRange< T >::HTRange ( T lower,
T upper )
inline

Definition at line 62 of file InstallArea/x86_64-el9-gcc13-opt/include/MdcRecoUtil/HTRange.h.

62: _defined( true ), _lower( lower ), _upper( upper ) {}

◆ HTRange() [6/9]

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

Definition at line 65 of file InstallArea/x86_64-el9-gcc13-opt/include/MdcRecoUtil/HTRange.h.

66 : _defined( o._defined ), _lower( o._lower ), _upper( o._upper ) {}

◆ ~HTRange() [2/3]

template<class T>
HTRange< T >::~HTRange ( )
inline

◆ HTRange() [7/9]

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

Definition at line 61 of file Reconstruction/MdcPatRec/MdcRecoUtil/include/MdcRecoUtil/HTRange.h.

61: _defined( false ), _lower( 0 ), _upper( 0 ) {}

◆ HTRange() [8/9]

template<class T>
HTRange< T >::HTRange ( T lower,
T upper )
inline

Definition at line 62 of file Reconstruction/MdcPatRec/MdcRecoUtil/include/MdcRecoUtil/HTRange.h.

62: _defined( true ), _lower( lower ), _upper( upper ) {}

◆ HTRange() [9/9]

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

Definition at line 65 of file Reconstruction/MdcPatRec/MdcRecoUtil/include/MdcRecoUtil/HTRange.h.

66 : _defined( o._defined ), _lower( o._lower ), _upper( o._upper ) {}

◆ ~HTRange() [3/3]

template<class T>
HTRange< T >::~HTRange ( )
inline

Member Function Documentation

◆ lower() [1/3]

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

Definition at line 85 of file InstallArea/x86_64-el9-gcc13-dbg/include/MdcRecoUtil/HTRange.h.

85{ return _lower; }

Referenced by HTRange().

◆ lower() [2/3]

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

Definition at line 85 of file InstallArea/x86_64-el9-gcc13-opt/include/MdcRecoUtil/HTRange.h.

85{ return _lower; }

◆ lower() [3/3]

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

Definition at line 85 of file Reconstruction/MdcPatRec/MdcRecoUtil/include/MdcRecoUtil/HTRange.h.

85{ return _lower; }

◆ operator()() [1/3]

template<class T>
bool HTRange< T >::operator() ( ) const
inline

Definition at line 82 of file InstallArea/x86_64-el9-gcc13-dbg/include/MdcRecoUtil/HTRange.h.

82{ return _defined; }

◆ operator()() [2/3]

template<class T>
bool HTRange< T >::operator() ( ) const
inline

Definition at line 82 of file InstallArea/x86_64-el9-gcc13-opt/include/MdcRecoUtil/HTRange.h.

82{ return _defined; }

◆ operator()() [3/3]

template<class T>
bool HTRange< T >::operator() ( ) const
inline

Definition at line 82 of file Reconstruction/MdcPatRec/MdcRecoUtil/include/MdcRecoUtil/HTRange.h.

82{ return _defined; }

◆ operator=() [1/3]

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

Definition at line 73 of file InstallArea/x86_64-el9-gcc13-dbg/include/MdcRecoUtil/HTRange.h.

73 {
74 if ( &o == this ) return *this;
75 _defined = o._defined;
76 _lower = o._lower;
77 _upper = o._upper;
78 return *this;
79 }

◆ operator=() [2/3]

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

Definition at line 73 of file InstallArea/x86_64-el9-gcc13-opt/include/MdcRecoUtil/HTRange.h.

73 {
74 if ( &o == this ) return *this;
75 _defined = o._defined;
76 _lower = o._lower;
77 _upper = o._upper;
78 return *this;
79 }

◆ operator=() [3/3]

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

Definition at line 73 of file Reconstruction/MdcPatRec/MdcRecoUtil/include/MdcRecoUtil/HTRange.h.

73 {
74 if ( &o == this ) return *this;
75 _defined = o._defined;
76 _lower = o._lower;
77 _upper = o._upper;
78 return *this;
79 }

◆ upper() [1/3]

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

Definition at line 86 of file InstallArea/x86_64-el9-gcc13-dbg/include/MdcRecoUtil/HTRange.h.

86{ return _upper; }

Referenced by HTRange().

◆ upper() [2/3]

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

Definition at line 86 of file InstallArea/x86_64-el9-gcc13-opt/include/MdcRecoUtil/HTRange.h.

86{ return _upper; }

◆ upper() [3/3]

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

Definition at line 86 of file Reconstruction/MdcPatRec/MdcRecoUtil/include/MdcRecoUtil/HTRange.h.

86{ return _upper; }

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