#include <FunctionObjects.h>
Public Methods | |
bool | operator() (const Atlfast::IKinematic *a, const Atlfast::IKinematic *b) const |
bool | operator() (const Atlfast::IKinematic &a, const Atlfast::IKinematic &b) const |
bool | operator() (const double boundary, const Atlfast::IKinematic *a) const |
bool | operator() (const double boundary, const Atlfast::IKinematic &a) const |
Used to sort a container of IKinematic objects or pointers by ascending eT.
Definition at line 130 of file FunctionObjects.h.
|
Definition at line 135 of file FunctionObjects.h.
00136 { return( a->eT() < b->eT() ) ; }
|
|
Definition at line 138 of file FunctionObjects.h.
00139 { return( a.eT() < b.eT() ) ; }
|
|
Definition at line 143 of file FunctionObjects.h.
00144 { return (boundary < a->eT()) ; }
|
|
Definition at line 146 of file FunctionObjects.h.
00147 { return (boundary < a.eT()) ; }
|