CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
formulaUnaryMinusEvaluator.h
Go to the documentation of this file.
1 #ifndef CommonTools_Utils_formulaUnaryMinusEvaluator_h
2 #define CommonTools_Utils_formulaUnaryMinusEvaluator_h
3 // -*- C++ -*-
4 //
5 // Package: CommonTools/Utils
6 // Class : formulaUnaryMinusEvaluator
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  explicit UnaryMinusEvaluator(std::shared_ptr<EvaluatorBase> iArg)
35  : EvaluatorBase(Precedence::kUnaryMinusOperator), m_arg(std::move(iArg)) {}
36 
37  // ---------- const member functions ---------------------
38  double evaluate(double const* iVariables, double const* iParameters) const final {
39  return -1. * m_arg->evaluate(iVariables, iParameters);
40  }
41  std::vector<std::string> abstractSyntaxTree() const final {
42  auto ret = shiftAST(m_arg->abstractSyntaxTree());
43  ret.emplace(ret.begin(), "unary minus");
44  return ret;
45  }
46 
48 
49  const UnaryMinusEvaluator& operator=(const UnaryMinusEvaluator&) = delete;
50 
51  private:
52  // ---------- member data --------------------------------
53  std::shared_ptr<EvaluatorBase> m_arg;
54  };
55  } // namespace formula
56 } // namespace reco
57 
58 #endif
tuple ret
prodAgent to be discontinued
std::vector< std::string > abstractSyntaxTree() const final
std::vector< std::string > shiftAST(std::vector< std::string > child)
def move
Definition: eostools.py:511
double evaluate(double const *iVariables, double const *iParameters) const final
const UnaryMinusEvaluator & operator=(const UnaryMinusEvaluator &)=delete
UnaryMinusEvaluator(std::shared_ptr< EvaluatorBase > iArg)
std::shared_ptr< EvaluatorBase > m_arg