CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TriggerExpressionHLTReader.h
Go to the documentation of this file.
1 #ifndef HLTrigger_HLTfilters_TriggerExpressionHLTReader_h
2 #define HLTrigger_HLTfilters_TriggerExpressionHLTReader_h
3 
4 #include <vector>
5 #include <string>
6 
8 
9 namespace triggerExpression {
10 
11 class HLTReader : public Evaluator {
12 public:
13  HLTReader(const std::string & pattern) :
14  m_pattern(pattern),
15  m_triggers()
16  { }
17 
18  bool operator()(const Data & data) const;
19 
20  void init(const Data & data);
21 
22  void dump(std::ostream & out) const;
23 
24 private:
25  std::string m_pattern;
26  std::vector<std::pair<std::string, unsigned int> > m_triggers;
27 };
28 
29 } // namespace triggerExpression
30 
31 #endif // HLTrigger_HLTfilters_TriggerExpressionHLTReader_h
void dump(std::ostream &out) const
bool operator()(const Data &data) const
tuple out
Definition: dbtoconf.py:99
std::vector< std::pair< std::string, unsigned int > > m_triggers
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
HLTReader(const std::string &pattern)