DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
TriggerInhibit.hpp
Go to the documentation of this file.
1
9#ifndef DFMESSAGES_INCLUDE_DFMESSAGES_TRIGGERINHIBIT_HPP_
10#define DFMESSAGES_INCLUDE_DFMESSAGES_TRIGGERINHIBIT_HPP_
11
12#include "dfmessages/Types.hpp"
14
15#include <cstddef>
16
17namespace dunedaq {
18namespace dfmessages {
29static_assert(sizeof(TriggerInhibit) == 8, "TriggerInhibit size unexpected!");
30static_assert(offsetof(TriggerInhibit, busy) == 0, "TriggerInhibit busy field not at expected offset!");
31static_assert(offsetof(TriggerInhibit, run_number) == 4, "TriggerInhibit run_number field not at expected offset!");
32} // namespace dfmessages
34} // namespace dunedaq
35
36#endif // DFMESSAGES_INCLUDE_DFMESSAGES_TRIGGERINHIBIT_HPP_
#define DUNE_DAQ_SERIALIZABLE(Type, typestring)
daqdataformats::run_number_t run_number_t
Copy daqdataformats::run_number_t.
Definition Types.hpp:34
Including Qt Headers.
Represents a message indicating whether TriggerDecisions should be inhibited.
run_number_t run_number
Current run number.
bool busy
Whether the system is busy.
DUNE_DAQ_SERIALIZE(TriggerInhibit, busy, run_number)