CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ComparisonBase.h
Go to the documentation of this file.
1 #ifndef Parser_ComparisonBase_h
2 #define Parser_ComparisonBase_h
3 /* \class reco::parser::ComparisonBase
4  *
5  * Base class for comparison operator
6  *
7  * \author original version: Chris Jones, Cornell,
8  * adapted to Reflex by Luca Lista, INFN
9  *
10  * \version $Revision: 1.1 $
11  *
12  */
13 
14 namespace reco {
15  namespace parser {
16  struct ComparisonBase {
17  virtual ~ComparisonBase() { }
18  virtual bool compare( double, double ) const = 0;
19  };
20  }
21 }
22 
23 #endif
virtual bool compare(double, double) const =0