CMS 3D CMS Logo

Public Member Functions | Private Attributes

PhiRangeSelector Struct Reference

#include <PhiRangeSelector.h>

List of all members.

Public Member Functions

template<typename T >
bool operator() (const T &t) const
 PhiRangeSelector (double phiMin, double phiMax)

Private Attributes

double phiMax_
double phiMin_

Detailed Description

Definition at line 6 of file PhiRangeSelector.h.


Constructor & Destructor Documentation

PhiRangeSelector::PhiRangeSelector ( double  phiMin,
double  phiMax 
) [inline]

Definition at line 7 of file PhiRangeSelector.h.

                                                   : 
    phiMin_( phiMin ), phiMax_( phiMax ) { }

Member Function Documentation

template<typename T >
bool PhiRangeSelector::operator() ( const T t) const [inline]

Definition at line 10 of file PhiRangeSelector.h.

References phi, phiMax_, and phiMin_.

                                       { 
    double phi = t.phi();
    return ( phi >= phiMin_ && phi <= phiMax_ ); 
  }

Member Data Documentation

double PhiRangeSelector::phiMax_ [private]

Definition at line 15 of file PhiRangeSelector.h.

Referenced by operator()().

double PhiRangeSelector::phiMin_ [private]

Definition at line 15 of file PhiRangeSelector.h.

Referenced by operator()().