CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
formulaConstantEvaluator.h
Go to the documentation of this file.
1 #ifndef CommonTools_Utils_formulaConstantEvaluator_h
2 #define CommonTools_Utils_formulaConstantEvaluator_h
3 // -*- C++ -*-
4 //
5 // Package: CommonTools/Utils
6 // Class : reco::formula::ConstantEvaluator
7 //
16 //
17 // Original Author: Christopher Jones
18 // Created: Wed, 23 Sep 2015 18:06:27 GMT
19 //
20 
21 // system include files
22 
23 // user include files
24 #include "formulaEvaluatorBase.h"
25 
26 // forward declarations
27 
28 namespace reco {
29  namespace formula {
31  public:
32  explicit ConstantEvaluator(double iValue) : m_value(iValue) {}
33 
34  // ---------- const member functions ---------------------
35  double evaluate(double const* iVariables, double const* iParameters) const final;
36  std::vector<std::string> abstractSyntaxTree() const final;
37 
39 
41 
42  private:
43  // ---------- member data --------------------------------
44  double m_value;
45  };
46  } // namespace formula
47 } // namespace reco
48 
49 #endif
double evaluate(double const *iVariables, double const *iParameters) const final
std::vector< std::string > abstractSyntaxTree() const final