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

PartitionCondition::BelowThresholdET Class Reference

STL generic algorithm function object. More...

#include <FunctionObjects.h>

List of all members.


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


Detailed Description

STL generic algorithm function object.

Used to select IKinematic objects below a threshold eT.

Definition at line 394 of file FunctionObjects.h.


Constructor & Destructor Documentation

PartitionCondition::BelowThresholdET::BelowThresholdET double    boundary [inline]
 

Definition at line 398 of file FunctionObjects.h.

References m_boundary.

00398 : m_boundary(boundary) {}

Member Function Documentation

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

function operator

Definition at line 400 of file FunctionObjects.h.

References m_boundary.

00401       { return (m_boundary  > a->eT()) ; }

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

forwarded function operator

Definition at line 403 of file FunctionObjects.h.

References m_boundary.

00404     { return (m_boundary  > a.eT()) ; }

Member Data Documentation

double PartitionCondition::BelowThresholdET::m_boundary [private]
 

eT threshold value

Definition at line 408 of file FunctionObjects.h.

Referenced by BelowThresholdET(), 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