CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Functions
triggerExpression Namespace Reference

Classes

class  BinaryOperator
 
class  Constant
 
class  Data
 
class  Evaluator
 
class  L1uGTReader
 
class  OperatorAnd
 
class  OperatorNot
 
class  OperatorOr
 
class  OperatorXor
 
class  Parser
 
class  PathReader
 
class  Prescaler
 
class  UnaryOperator
 

Functions

std::ostream & operator<< (std::ostream &out, const Evaluator &eval)
 
template<class T >
Evaluatorparse (const T &text)
 
Evaluatorparse (const char *text)
 

Function Documentation

std::ostream& triggerExpression::operator<< ( std::ostream &  out,
const Evaluator &  eval 
)
inline

Definition at line 32 of file TriggerExpressionEvaluator.h.

References triggerExpression::Evaluator::dump(), and submitPVResolutionJobs::out.

32  {
33  eval.dump(out);
34  return out;
35  }
template<class T >
Evaluator* triggerExpression::parse ( const T text)

Definition at line 65 of file TriggerExpressionParser.h.

References SplitLinear::begin, dataset::end, dd4hep::evaluator(), or, writedatasetfile::parser, and mps_fire::result.

Referenced by TriggerResultsFilter::parse(), and TriggerResultsFilterFromDB::parse().

65  {
66  typedef typename T::const_iterator Iterator;
67  Parser<Iterator> parser;
68  Evaluator *evaluator = nullptr;
69 
70  Iterator begin = text.begin();
71  Iterator end = text.end();
72 
73  // the interface of qi::phrase_parse has changed between Boost 1.40 (Spirit 2.0) and Boost 1.41 (Spirit 2.1)
74  bool result = qi::phrase_parse(begin, end, parser, ascii::space, evaluator);
75 
76  if (not result or begin != end) {
77  delete evaluator;
78  return nullptr;
79  }
80 
81  return evaluator;
82  }
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventIDconst &, edm::Timestampconst & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
TGeoIterator Iterator
tuple result
Definition: mps_fire.py:311
tuple text
Definition: runonSM.py:43
string end
Definition: dataset.py:937
dd4hep::tools::Evaluator & evaluator()
Evaluator* triggerExpression::parse ( const char *  text)
inline

Definition at line 85 of file TriggerExpressionParser.h.

References SplitLinear::begin, dataset::end, dd4hep::evaluator(), or, writedatasetfile::parser, mps_fire::result, and runonSM::text.

85  {
86  Parser<const char *> parser;
87  Evaluator *evaluator = nullptr;
88 
89  const char *begin = text;
90  const char *end = text + strlen(text);
91 
92  // the interface of qi::phrase_parse has changed between Boost 1.40 (Spirit 2.0) and Boost 1.41 (Spirit 2.1)
93  bool result = qi::phrase_parse(begin, end, parser, ascii::space, evaluator);
94 
95  if (not result or begin != end) {
96  delete evaluator;
97  return nullptr;
98  }
99 
100  return evaluator;
101  }
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventIDconst &, edm::Timestampconst & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
tuple result
Definition: mps_fire.py:311
tuple text
Definition: runonSM.py:43
string end
Definition: dataset.py:937
dd4hep::tools::Evaluator & evaluator()