CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Attributes
fftjetcms::EtaAndPtLookupPeakSelector Class Reference

#include <EtaAndPtDependentPeakSelector.h>

Inheritance diagram for fftjetcms::EtaAndPtLookupPeakSelector:

Public Member Functions

 EtaAndPtLookupPeakSelector (unsigned nx, double xmin, double xmax, unsigned ny, double ymin, double ymax, const std::vector< double > &data)
 
bool operator() (const fftjet::Peak &peak) const override
 

Private Attributes

LookupTable2d lookupTable_
 

Detailed Description

Definition at line 34 of file EtaAndPtDependentPeakSelector.h.

Constructor & Destructor Documentation

fftjetcms::EtaAndPtLookupPeakSelector::EtaAndPtLookupPeakSelector ( unsigned  nx,
double  xmin,
double  xmax,
unsigned  ny,
double  ymin,
double  ymax,
const std::vector< double > &  data 
)

Member Function Documentation

bool fftjetcms::EtaAndPtLookupPeakSelector::operator() ( const fftjet::Peak &  peak) const
override

Definition at line 20 of file EtaAndPtDependentPeakSelector.cc.

References fftjetcms::LookupTable2d::closest(), funct::exp(), log, and lookupTable_.

20  {
21  const double lookup = lookupTable_.closest(peak.eta(), log(peak.scale()));
22  return peak.magnitude() > exp(lookup);
23  }
static std::vector< std::string > checklist log
Exp< T >::type exp(const T &t)
Definition: Exp.h:22
double closest(double x, double y) const

Member Data Documentation

LookupTable2d fftjetcms::EtaAndPtLookupPeakSelector::lookupTable_
private

Definition at line 42 of file EtaAndPtDependentPeakSelector.h.

Referenced by operator()().