otsdaq  v2_03_00
DQMHistosConsumerBase.h
1 #ifndef _ots_DQMHistosConsumerBase_h_
2 #define _ots_DQMHistosConsumerBase_h_
3 
4 #include <string>
5 #include "otsdaq-core/DataManager/DataConsumer.h"
6 #include "otsdaq-core/RootUtilities/DQMHistosBase.h"
7 
8 namespace ots
9 {
11 {
12  public:
13  DQMHistosConsumerBase(std::string supervisorApplicationUID,
14  std::string bufferUID,
15  std::string processorUID,
16  ConsumerPriority priority)
17  : WorkLoop(processorUID)
18  , DataConsumer(
19  supervisorApplicationUID, bufferUID, processorUID, LowConsumerPriority)
20  {
21  ;
22  }
23  virtual ~DQMHistosConsumerBase(void) { ; }
24 };
25 } // namespace ots
26 
27 #endif