CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CutBinaryOperatorSetter.h
Go to the documentation of this file.
1 #ifndef CommonTools_Utils_CutBinaryOperatorSetter_h
2 #define CommonTools_Utils_CutBinaryOperatorSetter_h
3 /* \class reco::parser::CutBinaryOperator
4  *
5  * Binary operator expression setter
6  *
7  * \author original version: Chris Jones, Cornell,
8  * adapted by Luca Lista, INFN
9  *
10  * \version $Revision: 1.2 $
11  *
12  */
14 #include "CommonTools/Utils/src/CutStack.h"
15 #include <cmath>
16 
17 namespace reco {
18  namespace parser {
19 
20  template<typename T>
21  struct power_of {
22  T operator()(T lhs, T rhs) const { return pow(lhs, rhs); }
23  };
24 
25  template<typename Op>
27  CutBinaryOperatorSetter(CutStack & stack) : stack_(stack) { }
28  void operator()(const char*, const char*) const {
29  stack_.push_back(CutPtr(new CutBinaryOperator<Op>(stack_)));
30  }
31  private:
32  CutStack & stack_;
33  };
34  }
35 }
36 
37 #endif
T operator()(T lhs, T rhs) const
void operator()(const char *, const char *) const
stack
Definition: svgfig.py:558
long double T
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:40