Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:17

0001 #ifndef Parser_ComparisonBase_h
0002 #define Parser_ComparisonBase_h
0003 /* \class reco::parser::ComparisonBase
0004  *
0005  * Base class for comparison operator
0006  *
0007  * \author original version: Chris Jones, Cornell, 
0008  *         adapted by Luca Lista, INFN
0009  *
0010  * \version $Revision: 1.2 $
0011  *
0012  */
0013 
0014 namespace reco {
0015   namespace parser {
0016     struct ComparisonBase {
0017       virtual ~ComparisonBase() {}
0018       virtual bool compare(double, double) const = 0;
0019     };
0020   }  // namespace parser
0021 }  // namespace reco
0022 
0023 #endif