#include <CellsAboveThreshold.h>
Inheritance diagram for Atlfast::CellsAboveThreshold:
Public Methods | |
CellsAboveThreshold (double ET=0.) | |
Constructor taking energy threshold. | |
~CellsAboveThreshold () | |
virtual bool | operator() (const ICell *cptr) const |
Returns true if Cell's energy sum is above energy threshold. | |
Private Attributes | |
double | m_thresh |
Energy threshold. |
Definition at line 15 of file CellsAboveThreshold.h.
|
Constructor taking energy threshold.
Definition at line 21 of file CellsAboveThreshold.h. References m_thresh.
00021 :m_thresh(ET){} |
|
Definition at line 22 of file CellsAboveThreshold.h.
00022 {} |
|
Returns true if Cell's energy sum is above energy threshold.
Implements Atlfast::ICellSelector. Definition at line 27 of file CellsAboveThreshold.h. References m_thresh.
00028 { return (cptr->eT()>m_thresh) ? true:false;} |
|
Energy threshold.
Definition at line 31 of file CellsAboveThreshold.h. Referenced by CellsAboveThreshold(), and operator()(). |