CMS 3D CMS Logo

ExpressionEvaluator.h
Go to the documentation of this file.
1 #ifndef CommonToolsUtilsExpressionEvaluator_H
2 #define CommonToolsUtilsExpressionEvaluator_H
3 
4 #include <string>
5 
6 namespace reco {
7 
9  public:
10  ExpressionEvaluator(const char* pkg, const char* iname, const std::string& iexpr);
12 
13  template <typename EXPR, typename... CArgs>
14  EXPR* expr() const {
15  typedef EXPR* factoryP();
16  return reinterpret_cast<factoryP*>(m_expr)();
17  }
18 
19  private:
21  void* m_expr;
22  };
23 
24  template <typename EXPR>
25  EXPR* expressionEvaluator(const char* pkg, const char* iname, const std::string& iexpr) {
26  ExpressionEvaluator ee(pkg, iname, iexpr);
27  return ee.expr<EXPR>();
28  }
29 
30 } // namespace reco
31 
32 #define SINGLE_ARG(...) __VA_ARGS__
33 #define RECO_XSTR(...) RECO_STR(__VA_ARGS__)
34 #define RECO_STR(...) #__VA_ARGS__
35 #define reco_expressionEvaluator(pkg, EXPR, iexpr) reco::expressionEvaluator<EXPR>(pkg, RECO_XSTR(EXPR), iexpr)
36 
37 #endif // CommonToolsUtilsExpressionEvaluator_H
EXPR * expressionEvaluator(const char *pkg, const char *iname, const std::string &iexpr)
Definition: pkg.py:1
ExpressionEvaluator(const char *pkg, const char *iname, const std::string &iexpr)
fixed size matrix