00001 #include "proto/artdaqapp.hh"
00002 #include "artdaq/Application/LoadParameterSet.hh"
00003
00004 int main(int argc, char* argv[])
00005 {
00006 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");
00007 artdaq::detail::TaskType task = artdaq::detail::TaskType::EventBuilderTask;
00008
00009 artdaq::artdaqapp::runArtdaqApp(task, config_ps);
00010 }