#include <FunctionObjects.h>
Public Methods | |
AboveThresholdET (double boundary) | |
bool | operator() (const Atlfast::IKinematic *a) const |
function operator | |
bool | operator() (const Atlfast::IKinematic &a) const |
function operator | |
Private Attributes | |
double | m_boundary |
eT threshold |
Used to select IKinematic objects above a threshold eT.
Definition at line 372 of file FunctionObjects.h.
|
Definition at line 376 of file FunctionObjects.h. References m_boundary.
00376 : m_boundary(boundary) {} |
|
function operator
Definition at line 378 of file FunctionObjects.h. References m_boundary.
00379 { return (m_boundary < a->eT()) ; } |
|
function operator
Definition at line 381 of file FunctionObjects.h. References m_boundary.
00382 { return (m_boundary < a.eT()) ; } |
|
eT threshold
Definition at line 386 of file FunctionObjects.h. Referenced by AboveThresholdET(), and operator()(). |