artdaq_mfextensions  v1_05_00
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 
5 #include "ErrorHandler/MessageAnalyzer/ma_test_function.h"
6 
7 namespace novadaq {
8 namespace errorhandler {
9 
11 {
12 
13 public:
14 
15  ma_tf_grp_to_number( ) : group(0) { }
16 
17  virtual boost::any
18  evaluate( ma_condition const & cond );
19 
20  virtual bool
21  parse_arguments( anys_t const & args );
22 
23 private:
24 
25  int group;
26 
27 };
28 
29 
30 } // end of namespace errorhandler
31 } // end of namespace novadaq
32 
33 
34 
35 
36 #endif