#include <FunctionObjects.h>
Public Methods | |
| BelowThresholdET (double boundary) | |
| bool | operator() (const Atlfast::IKinematic *a) const |
| function operator | |
| bool | operator() (const Atlfast::IKinematic &a) const |
| forwarded function operator | |
Private Attributes | |
| double | m_boundary |
| eT threshold value | |
Used to select IKinematic objects below a threshold eT.
Definition at line 394 of file FunctionObjects.h.
|
|
Definition at line 398 of file FunctionObjects.h. References m_boundary.
00398 : m_boundary(boundary) {} |
|
|
function operator
Definition at line 400 of file FunctionObjects.h. References m_boundary.
00401 { return (m_boundary > a->eT()) ; }
|
|
|
forwarded function operator
Definition at line 403 of file FunctionObjects.h. References m_boundary.
00404 { return (m_boundary > a.eT()) ; }
|
|
|
eT threshold value
Definition at line 408 of file FunctionObjects.h. Referenced by BelowThresholdET(), and operator()(). |
1.3-rc1