CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
MaxFunctionSelector< T, fun > Struct Template Reference

#include <MaxFunctionSelector.h>

Public Member Functions

 MaxFunctionSelector (double max)
 
bool operator() (const T &t) const
 

Private Attributes

double max_
 

Detailed Description

template<typename T, double(T::*)() const fun>
struct MaxFunctionSelector< T, fun >

Definition at line 11 of file MaxFunctionSelector.h.

Constructor & Destructor Documentation

template<typename T , double(T::*)() const fun>
MaxFunctionSelector< T, fun >::MaxFunctionSelector ( double  max)
inline

Definition at line 12 of file MaxFunctionSelector.h.

12  :
13  max_( max ) { }
const T & max(const T &a, const T &b)

Member Function Documentation

template<typename T , double(T::*)() const fun>
bool MaxFunctionSelector< T, fun >::operator() ( const T t) const
inline

Definition at line 14 of file MaxFunctionSelector.h.

References MaxFunctionSelector< T, fun >::max_.

14 { return (t.*fun)() <= max_; }

Member Data Documentation

template<typename T , double(T::*)() const fun>
double MaxFunctionSelector< T, fun >::max_
private

Definition at line 17 of file MaxFunctionSelector.h.

Referenced by MaxFunctionSelector< T, fun >::operator()().