CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ExpressionBinaryOperator.h
Go to the documentation of this file.
1 #ifndef CommonTools_Utils_ExpressionBinaryOperator_h
2 #define CommonTools_Utils_ExpressionBinaryOperator_h
3 /* \class reco::parser::ExpressionBinaryOperator
4  *
5  * Binary Operator expression
6  *
7  * \author original version: Chris Jones, Cornell,
8  * adapted to Reflex by Luca Lista, INFN
9  *
10  * \version $Revision: 1.1 $
11  *
12  */
15 
16 namespace reco {
17  namespace parser {
18  template<typename Op>
20  virtual double value(const Reflex::Object& o) const {
21  return op_((*lhs_).value(o), (*rhs_).value(o));
22  }
24  rhs_ = expStack.back(); expStack.pop_back();
25  lhs_ = expStack.back(); expStack.pop_back();
26  }
27  private:
28  Op op_;
30  };
31  }
32 }
33 
34 #endif
boost::shared_ptr< ExpressionBase > ExpressionPtr
std::vector< boost::shared_ptr< ExpressionBase > > ExpressionStack
ExpressionBinaryOperator(ExpressionStack &expStack)
virtual double value(const Reflex::Object &o) const