CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions
NumericSafeGreaterByPt< T > Struct Template Reference

#include <PtComparator.h>

Public Types

typedef T first_argument_type
 
typedef T second_argument_type
 

Public Member Functions

bool operator() (const T &a1, const T &a2)
 

Detailed Description

template<class T>
struct NumericSafeGreaterByPt< T >

Definition at line 50 of file PtComparator.h.

Member Typedef Documentation

template<class T>
typedef T NumericSafeGreaterByPt< T >::first_argument_type

Definition at line 51 of file PtComparator.h.

template<class T>
typedef T NumericSafeGreaterByPt< T >::second_argument_type

Definition at line 52 of file PtComparator.h.

Member Function Documentation

template<class T>
bool NumericSafeGreaterByPt< T >::operator() ( const T a1,
const T a2 
)
inline

Definition at line 53 of file PtComparator.h.

References epsilon.

53  {
54  return
55  fabs (a1.pt()-a2.pt()) > std::numeric_limits<double>::epsilon() ? a1.pt() > a2.pt() :
56  fabs (a1.px()-a2.px()) > std::numeric_limits<double>::epsilon() ? a1.px() > a2.px() :
57  a1.pz() > a2.pz();
58  }
const double epsilon