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,"routing_master", "This is the artdaq Routing Master application\nThe Routing Master receives tokens from the receivers, builds Routing Tables using those tokens and a Routing Policy plugin, then sends the routing tables to the senders.");
00007
00008 artdaq::detail::TaskType task = artdaq::detail::TaskType::RoutingMasterTask;
00009
00010 artdaq::artdaqapp::runArtdaqApp(task, config_ps);
00011 }