CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
MaxFunctionSelector.h
Go to the documentation of this file.
1 #ifndef RecoAlgos_MaxFunctionSelector_h
2 #define RecoAlgos_MaxFunctionSelector_h
3 /* \class MaxSelector
4  *
5  * \author Luca Lista, INFN
6  *
7  * $Id: MaxFunctionSelector.h,v 1.1 2009/02/24 14:40:26 llista Exp $
8  */
9 
10 template <typename T, double (T::*fun)() const>
12  MaxFunctionSelector(double max) : max_(max) {}
13  bool operator()(const T& t) const { return (t.*fun)() <= max_; }
14 
15 private:
16  double max_;
17 };
18 
19 #endif
MaxFunctionSelector(double max)
bool operator()(const T &t) const
long double T