artdaq  v3_00_03
CommanderInterface.cc
1 #include "CommanderInterface.hh"
2 
3 namespace artdaq {
4  inline std::string CommanderInterface::send_init(fhicl::ParameterSet, uint64_t, uint64_t)
5  {
6 #pragma message "Using default implementation of send_init!"
7  return "NOT IMPLEMENTED";
8  }
9 
10  inline std::string CommanderInterface::send_soft_init(fhicl::ParameterSet, uint64_t, uint64_t)
11  {
12 #pragma message "Using default implementation of send_soft_init!"
13  return "NOT IMPLEMENTED";
14  }
15 
16  inline std::string CommanderInterface::send_reinit(fhicl::ParameterSet, uint64_t, uint64_t)
17  {
18 #pragma message "Using default implementation of send_reinit!"
19  return "NOT IMPLEMENTED";
20  }
21 
22  inline std::string CommanderInterface::send_start(art::RunID, uint64_t, uint64_t)
23  {
24 #pragma message "Using default implementation of send_start!"
25  return "NOT IMPLEMENTED";
26  }
27 
28  inline std::string CommanderInterface::send_pause(uint64_t, uint64_t)
29  {
30 #pragma message "Using default implementation of send_pause!"
31  return "NOT IMPLEMENTED";
32  }
33 
34  inline std::string CommanderInterface::send_resume(uint64_t, uint64_t)
35  {
36 #pragma message "Using default implementation of send_resume!"
37  return "NOT IMPLEMENTED";
38  }
39 
40  inline std::string CommanderInterface::send_stop(uint64_t, uint64_t)
41  {
42 #pragma message "Using default implementation of send_stop!"
43  return "NOT IMPLEMENTED";
44  }
45 
46  inline std::string CommanderInterface::send_shutdown(uint64_t)
47  {
48 #pragma message "Using default implementation of send_shutdown!"
49  return "NOT IMPLEMENTED";
50  }
51 
52  inline std::string CommanderInterface::send_status()
53  {
54 #pragma message "Using default implementation of send_status!"
55  return "NOT IMPLEMENTED";
56  }
57 
58  inline std::string CommanderInterface::send_report(std::string)
59  {
60 #pragma message "Using default implementation of send_report!"
61  return "NOT IMPLEMENTED";
62  }
63 
65  {
66 #pragma message "Using default implementation of send_legal_commands!"
67  return "NOT IMPLEMENTED";
68  }
69 
70  inline std::string CommanderInterface::send_register_monitor(std::string)
71  {
72 #pragma message "Using default implementation of send_register_monitor!"
73  return "NOT IMPLEMENTED";
74  }
75 
76  inline std::string CommanderInterface::send_unregister_monitor(std::string)
77  {
78 #pragma message "Using default implementation of send_unregister_monitor!"
79  return "NOT IMPLEMENTED";
80  }
81 
82  inline std::string CommanderInterface::send_trace_get(std::string)
83  {
84 #pragma message "Using default implementation of send_trace_get!"
85  return "NOT IMPLEMENTED";
86  }
87 
88  inline std::string CommanderInterface::send_trace_set(std::string, std::string, uint64_t)
89  {
90 #pragma message "Using default implementation of send_trace_set!"
91  return "NOT IMPLEMENTED";
92  }
93 
94  inline std::string CommanderInterface::send_meta_command(std::string, std::string)
95  {
96 #pragma message "Using default implementation of send_meta_command!"
97  return "NOT IMPLEMENTED";
98  }
99 
100 } //namespace artdaq
virtual std::string send_report(std::string)
Using the transport mechanism, send a report command
virtual std::string send_soft_init(fhicl::ParameterSet, uint64_t, uint64_t)
Using the transport mechanism, send a soft_init command
virtual std::string send_unregister_monitor(std::string)
Using the transport mechanism, send an unregister_monitor command
virtual std::string send_meta_command(std::string, std::string)
Using the transport mechanism, send an send_meta_command command
virtual std::string send_resume(uint64_t, uint64_t)
Using the transport mechanism, send a resume command
virtual std::string send_legal_commands()
Using the transport mechanism, send a legal_commands command
virtual std::string send_trace_set(std::string, std::string, uint64_t)
Using the transport mechanism, send an send_trace_msgfacility_set command
virtual std::string send_start(art::RunID, uint64_t, uint64_t)
Using the transport mechanism, send a start command
virtual std::string send_stop(uint64_t, uint64_t)
Using the transport mechanism, send a stop command
virtual std::string send_init(fhicl::ParameterSet, uint64_t, uint64_t)
Using the transport mechanism, send an init command
virtual std::string send_reinit(fhicl::ParameterSet, uint64_t, uint64_t)
Using the transport mechanism, send a reinit command
virtual std::string send_shutdown(uint64_t)
Using the transport mechanism, send a shutdown command
virtual std::string send_register_monitor(std::string)
Using the transport mechanism, send a register_monitor command
virtual std::string send_status()
Using the transport mechanism, send a status command
virtual std::string send_trace_get(std::string)
Using the transport mechanism, send an send_trace_get command
virtual std::string send_pause(uint64_t, uint64_t)
Using the transport mechanism, send a pause command