CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
LogicalBinaryOperator.cc
Go to the documentation of this file.
2 
3 using namespace reco::parser;
4 template <>
5 bool LogicalBinaryOperator<std::logical_and<bool> >::operator()(const Reflex::Object &o) const {
6  return (*lhs_)(o) && (*rhs_)(o);
7 }
8 template <>
9 bool LogicalBinaryOperator<std::logical_or<bool> >::operator()(const Reflex::Object &o) const {
10  return (*lhs_)(o) || (*rhs_)(o);
11 }
12