#include <IsoDepositVetos.h>
Public Member Functions | |
AbsThresholdVeto (double threshold) | |
virtual void | centerOn (double eta, double phi) |
virtual bool | veto (double eta, double phi, float value) const |
Return "true" if a deposit at specific (eta,phi) with that value must be vetoed in the sum. | |
Private Attributes | |
float | threshold_ |
Definition at line 37 of file IsoDepositVetos.h.
reco::isodeposit::AbsThresholdVeto::AbsThresholdVeto | ( | double | threshold | ) | [inline] |
Definition at line 39 of file IsoDepositVetos.h.
: threshold_(threshold) {}
void AbsThresholdVeto::centerOn | ( | double | eta, |
double | phi | ||
) | [virtual] |
Relocates this veto so that the new center is at some (eta,phi). Must be implemented on the specific AbsVeto subclass: in this mother class it just throws exception
Reimplemented from reco::isodeposit::AbsVeto.
Definition at line 34 of file IsoDepositVetos.cc.
{ }
bool AbsThresholdVeto::veto | ( | double | eta, |
double | phi, | ||
float | value | ||
) | const [virtual] |
Return "true" if a deposit at specific (eta,phi) with that value must be vetoed in the sum.
Implements reco::isodeposit::AbsVeto.
Definition at line 31 of file IsoDepositVetos.cc.
References threshold_.
{ return ( fabs(value) <= threshold_); }
float reco::isodeposit::AbsThresholdVeto::threshold_ [private] |
Definition at line 43 of file IsoDepositVetos.h.
Referenced by veto().