CMS 3D CMS Logo

ExpressionFunctionSetter.h
Go to the documentation of this file.
1 #ifndef CommonTools_Utils_ExpressionFunctionSetter_h
2 #define CommonTools_Utils_ExpressionFunctionSetter_h
3 /* \class reco::parser::ExpressionFunction
4  *
5  * Numerical expression setter
6  *
7  * \author Luca Lista, INFN
8  *
9  * \version $Revision: 1.1 $
10  *
11  */
14 
15 namespace reco {
16  namespace parser {
19  : expStack_(expStack), funStack_(funStack) {}
20  void operator()(const char *, const char *) const;
21 
22  private:
25  };
26  } // namespace parser
27 } // namespace reco
28 
29 #endif
void operator()(const char *, const char *) const
std::vector< std::shared_ptr< ExpressionBase > > ExpressionStack
fixed size matrix
std::vector< Function > FunctionStack
Definition: FunctionStack.h:17
ExpressionFunctionSetter(ExpressionStack &expStack, FunctionStack &funStack)