CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
reco::isodeposit::AbsThresholdVeto Class Reference

#include <IsoDepositVetos.h>

Inheritance diagram for reco::isodeposit::AbsThresholdVeto:
reco::isodeposit::AbsVeto

Public Member Functions

 AbsThresholdVeto (double threshold)
 
void centerOn (double eta, double phi) override
 
bool veto (double eta, double phi, float value) const override
 Return "true" if a deposit at specific (eta,phi) with that value must be vetoed in the sum. More...
 
- Public Member Functions inherited from reco::isodeposit::AbsVeto
virtual ~AbsVeto ()
 

Private Attributes

float threshold_
 

Detailed Description

Definition at line 41 of file IsoDepositVetos.h.

Constructor & Destructor Documentation

◆ AbsThresholdVeto()

reco::isodeposit::AbsThresholdVeto::AbsThresholdVeto ( double  threshold)
inline

Member Function Documentation

◆ centerOn()

void AbsThresholdVeto::centerOn ( double  eta,
double  phi 
)
overridevirtual

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 28 of file IsoDepositVetos.cc.

28 {}

◆ veto()

bool AbsThresholdVeto::veto ( double  eta,
double  phi,
float  value 
) const
overridevirtual

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 27 of file IsoDepositVetos.cc.

References threshold_.

27 { return (fabs(value) <= threshold_); }
Definition: value.py:1

Member Data Documentation

◆ threshold_

float reco::isodeposit::AbsThresholdVeto::threshold_
private

Definition at line 48 of file IsoDepositVetos.h.

Referenced by veto().