CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
StringObjectFunction.h
Go to the documentation of this file.
1 #ifndef CommonTools_Utils_StringObjectFunction_h
2 #define CommonTools_Utils_StringObjectFunction_h
3 /* \class StringCutObjectSelector
4  *
5  * \author Luca Lista, INFN
6  *
7  * $Id: StringObjectFunction.h,v 1.3 2011/12/05 16:02:30 eulisse Exp $
8  */
13 #include "Reflex/Object.h"
14 
15 template<typename T, bool DefaultLazyness=false>
17  StringObjectFunction(const std::string & expr, bool lazy=DefaultLazyness) :
18  type_(Reflex::Type::ByTypeInfo(typeid(T))) {
19  if(! reco::parser::expressionParser<T>(expr, expr_, lazy)) {
21  "failed to parse \"" + expr + "\"");
22  }
23  }
25  expr_(expr),
26  type_(Reflex::Type::ByTypeInfo(typeid(T))) {
27  }
28  double operator()(const T & t) const {
29  using namespace Reflex;
30  Object o(type_, const_cast<T *>(& t));
31  return expr_->value(o);
32  }
33 
34 private:
37 };
38 
39 #endif
boost::shared_ptr< ExpressionBase > ExpressionPtr
StringObjectFunction(const reco::parser::ExpressionPtr &expr)
StringObjectFunction(const std::string &expr, bool lazy=DefaultLazyness)
reco::parser::ExpressionPtr expr_
long double T
double operator()(const T &t) const