artdaq_mfextensions  v1_06_02
ma_tf_grp_to_number.h
1 #ifndef ERROR_HANDLER_MA_TEST_FUNCTION_GRP_TO_NUMBER_H
2 #define ERROR_HANDLER_MA_TEST_FUNCTION_GRP_TO_NUMBER_H
3 
4 #include "ErrorHandler/MessageAnalyzer/ma_test_function.h"
5 
6 namespace novadaq {
7 namespace errorhandler {
8 
10 {
11 public:
13  : group(0) {}
14 
15  virtual boost::any
16  evaluate(ma_condition const& cond);
17 
18  virtual bool
19  parse_arguments(anys_t const& args);
20 
21 private:
22  int group;
23 };
24 
25 } // end of namespace errorhandler
26 } // end of namespace novadaq
27 
28 #endif