test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ExpressionVarSetter.h
Go to the documentation of this file.
1 #ifndef CommonTools_Utils_ExpressionVarSetter_h
2 #define CommonTools_Utils_ExpressionVarSetter_h
3 /* \class reco::parser::ExpressionNumber
4  *
5  * Numerical expression setter
6  *
7  * \author original version: Chris Jones, Cornell,
8  * adapted by Luca Lista, INFN
9  *
10  * \version $Revision: 1.3 $
11  *
12  */
16 
17 namespace reco {
18  namespace parser {
21  MethodStack & methStack,
22  LazyMethodStack & lazyMethStack,
23  TypeStack & typeStack) :
24  exprStack_(exprStack),
25  methStack_(methStack),
26  lazyMethStack_(lazyMethStack),
27  typeStack_(typeStack) { }
28  void operator()(const char *, const char *) const;
29 
30  private:
31  void push(const char *, const char *) const;
32  void lazyPush(const char *, const char *) const;
33 
38  };
39  }
40 }
41 
42 #endif
void operator()(const char *, const char *) const
void lazyPush(const char *, const char *) const
std::vector< edm::TypeWithDict > TypeStack
Definition: TypeStack.h:17
ExpressionVarSetter(ExpressionStack &exprStack, MethodStack &methStack, LazyMethodStack &lazyMethStack, TypeStack &typeStack)
std::vector< boost::shared_ptr< ExpressionBase > > ExpressionStack
std::vector< LazyInvoker > LazyMethodStack
Definition: MethodStack.h:18
void push(const char *, const char *) const
std::vector< MethodInvoker > MethodStack
Definition: MethodStack.h:17