Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members  

PartitionCondition::AboveThresholdET Class Reference

STL generic algorithm function object. More...

#include <FunctionObjects.h>

List of all members.


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


Detailed Description

STL generic algorithm function object.

Used to select IKinematic objects above a threshold eT.

Definition at line 372 of file FunctionObjects.h.


Constructor & Destructor Documentation

PartitionCondition::AboveThresholdET::AboveThresholdET double    boundary [inline]
 

Definition at line 376 of file FunctionObjects.h.

References m_boundary.

00376 : m_boundary(boundary) {}

Member Function Documentation

bool PartitionCondition::AboveThresholdET::operator() const Atlfast::IKinematic *    a const [inline]
 

function operator

Definition at line 378 of file FunctionObjects.h.

References m_boundary.

00379       { return (m_boundary  < a->eT()) ; }

bool PartitionCondition::AboveThresholdET::operator() const Atlfast::IKinematic &    a const [inline]
 

function operator

Definition at line 381 of file FunctionObjects.h.

References m_boundary.

00382       { return (m_boundary  < a.eT()) ; }

Member Data Documentation

double PartitionCondition::AboveThresholdET::m_boundary [private]
 

eT threshold

Definition at line 386 of file FunctionObjects.h.

Referenced by AboveThresholdET(), and operator()().


The documentation for this class was generated from the following file:
Generated on Wed Jan 15 11:00:37 2003 for AtlfastUtils by doxygen1.3-rc1