CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Comparison.h
Go to the documentation of this file.
1 #ifndef CommonTools_Utils_Comparison_h
2 #define CommonTools_Utils_Comparison_h
3 /* \class reco::parser::Comparison
4  *
5  * Comparison template
6  *
7  * \author original version: Chris Jones, Cornell,
8  * adapted to Reflex by Luca Lista, INFN
9  *
10  * \version $Revision: 1.1 $
11  *
12  */
14 
15 namespace reco {
16  namespace parser {
17  template<class CompT>
18  struct Comparison : public ComparisonBase {
19  virtual bool compare(double lhs, double rhs) const { return comp(lhs, rhs); }
20  private:
21  CompT comp;
22  };
23  }
24 }
25 
26 #endif
virtual bool compare(double lhs, double rhs) const
Definition: Comparison.h:19