CMS 3D CMS Logo

formulaFunctionTwoArgsEvaluator.h
Go to the documentation of this file.
1 #ifndef CommonTools_Utils_formulaFunctionTwoArgsEvaluator_h
2 #define CommonTools_Utils_formulaFunctionTwoArgsEvaluator_h
3 // -*- C++ -*-
4 //
5 // Package: CommonTools/Utils
6 // Class : formulaFunctionTwoArgsEvaluator
7 //
16 //
17 // Original Author: Christopher Jones
18 // Created: Wed, 23 Sep 2015 17:41:33 GMT
19 //
20 
21 // system include files
22 #include <memory>
23 #include <functional>
24 
25 // user include files
26 #include "formulaEvaluatorBase.h"
27 
28 // forward declarations
29 
30 namespace reco {
31  namespace formula {
33  public:
34  template <typename T>
35  FunctionTwoArgsEvaluator(std::shared_ptr<EvaluatorBase> iArg1, std::shared_ptr<EvaluatorBase> iArg2, T iFunc)
36  : m_arg1(std::move(iArg1)), m_arg2(std::move(iArg2)), m_function(iFunc) {}
37 
38  // ---------- const member functions ---------------------
39  double evaluate(double const* iVariables, double const* iParameters) const final {
40  return m_function(m_arg1->evaluate(iVariables, iParameters), m_arg2->evaluate(iVariables, iParameters));
41  }
42  std::vector<std::string> abstractSyntaxTree() const final {
43  auto ret = shiftAST(m_arg1->abstractSyntaxTree());
44  for (auto& v : shiftAST(m_arg2->abstractSyntaxTree())) {
45  ret.emplace_back(std::move(v));
46  }
47  ret.emplace(ret.begin(), "func 2 args");
48  return ret;
49  }
50 
52 
54 
55  private:
56  // ---------- member data --------------------------------
57  std::shared_ptr<EvaluatorBase> m_arg1;
58  std::shared_ptr<EvaluatorBase> m_arg2;
59  std::function<double(double, double)> m_function;
60  };
61  } // namespace formula
62 } // namespace reco
63 
64 #endif
std::vector< std::string > abstractSyntaxTree() const final
ret
prodAgent to be discontinued
std::vector< std::string > shiftAST(std::vector< std::string > child)
const FunctionTwoArgsEvaluator & operator=(const FunctionTwoArgsEvaluator &)=delete
double evaluate(double const *iVariables, double const *iParameters) const final
fixed size matrix
long double T
std::function< double(double, double)> m_function
def move(src, dest)
Definition: eostools.py:511
FunctionTwoArgsEvaluator(std::shared_ptr< EvaluatorBase > iArg1, std::shared_ptr< EvaluatorBase > iArg2, T iFunc)