|
DUNE-DAQ
DUNE Trigger and Data Acquisition software
|
#include "Application.hpp"#include "CommandLineInterpreter.hpp"#include "logging/Logging.hpp"#include <csignal>#include <fstream>#include <list>#include <map>#include <memory>#include <string>#include <vector>Go to the source code of this file.
Functions | |
| static void | signal_handler (int signal) |
| Signal handler for graceful stop. | |
| int | main (int argc, char *argv[]) |
Variables | |
| std::atomic< bool > | run_marker { true } |
| Global atomic for process lifetime. | |
Main Application for the DAQ Framework, loads DAQModules based on json configuration file
This is part of the DUNE DAQ Application Framework, copyright 2020. Licensing/copyright details are in the COPYING file that you should have received with this code.
Definition in file daq_application.cxx.
| int main | ( | int | argc, |
| char * | argv[] ) |
Definition at line 39 of file daq_application.cxx.
|
static |
Signal handler for graceful stop.
Definition at line 32 of file daq_application.cxx.
| std::atomic<bool> run_marker { true } |