artdaq  v3_00_03
TaskType.hh
1 #ifndef artdaq_Application_TaskType_hh
2 #define artdaq_Application_TaskType_hh
3 
7 namespace artdaq
8 {
12  namespace detail
13  {
17  enum TaskType : int
18  {
19  BoardReaderTask=1,
20  EventBuilderTask=2,
21  AggregatorTask=3,
22  RoutingMasterTask=4
23  };
24  }
25 
26  using detail::TaskType; // Require C++2011 scoping, hide C++03 scoping.
27 }
28 
29 #endif /* artdaq_Application_TaskType_hh */
TaskType
The types of applications in artdaq.
Definition: TaskType.hh:17