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
EtaRangeSelector Struct Reference

#include <EtaRangeSelector.h>

Public Member Functions

 EtaRangeSelector (double etaMin, double etaMax)
 
template<typename T >
bool operator() (const T &t) const
 

Private Attributes

double etaMax_
 
double etaMin_
 

Detailed Description

Definition at line 10 of file EtaRangeSelector.h.

Constructor & Destructor Documentation

EtaRangeSelector::EtaRangeSelector ( double  etaMin,
double  etaMax 
)
inline

Definition at line 11 of file EtaRangeSelector.h.

tuple etaMin
Definition: Puppi_cff.py:45
tuple etaMax
Definition: Puppi_cff.py:46

Member Function Documentation

template<typename T >
bool EtaRangeSelector::operator() ( const T t) const
inline

Definition at line 13 of file EtaRangeSelector.h.

References PVValHelper::eta, etaMax_, and etaMin_.

13  {
14  double eta = t.eta();
15  return (eta >= etaMin_ && eta <= etaMax_);
16  }

Member Data Documentation

double EtaRangeSelector::etaMax_
private

Definition at line 19 of file EtaRangeSelector.h.

Referenced by operator()().

double EtaRangeSelector::etaMin_
private

Definition at line 19 of file EtaRangeSelector.h.

Referenced by operator()().