otsdaq  v1_01_04
 All Classes Namespaces Functions
RawDataSaverConsumer_processor.cc
1 #include "otsdaq-core/DataProcessorPlugins/RawDataSaverConsumer.h"
2 #include "otsdaq-core/Macros/ProcessorPluginMacros.h"
3 
4 using namespace ots;
5 
6 
7 //========================================================================================================================
8 RawDataSaverConsumer::RawDataSaverConsumer(std::string supervisorApplicationUID, std::string bufferUID, std::string processorUID, const ConfigurationTree& theXDAQContextConfigTree, const std::string& configurationPath)
9 : WorkLoop (processorUID)
10 , RawDataSaverConsumerBase(supervisorApplicationUID, bufferUID, processorUID, theXDAQContextConfigTree, configurationPath)
11 {
12 }
13 
14 //========================================================================================================================
15 RawDataSaverConsumer::~RawDataSaverConsumer(void)
16 {}
17 
18 DEFINE_OTS_PROCESSOR(RawDataSaverConsumer)