artdaq  v3_09_01
eventbuilder.cc
1 #include "artdaq/Application/LoadParameterSet.hh"
2 #include "proto/artdaqapp.hh"
3 
4 int main(int argc, char* argv[])
5 try
6 {
7  fhicl::ParameterSet config_ps = LoadParameterSet<artdaq::artdaqapp::Config>(argc, argv, "eventbuilder", "The EventBuilder application receives Fragments from BoardReaders, concatenating them to form RawEvents. RawEvents are processed by an art process which typically runs first-level filtering, then it sends events on to the DataLogger");
8  artdaq::detail::TaskType task = artdaq::detail::TaskType::EventBuilderTask;
9 
10  artdaq::artdaqapp::runArtdaqApp(task, config_ps);
11 
12  return 0;
13 }
14 catch (...)
15 {
16  return -1;
17 }
static void runArtdaqApp(detail::TaskType task, fhicl::ParameterSet const &config_ps)
Run an artdaq Application
Definition: artdaqapp.hh:54
TaskType
The types of applications in artdaq.
Definition: TaskType.hh:17