diff --git a/src/scdaq.cc b/src/scdaq.cc index c419326466801c1a65f2dcd5d79e84a61364be69..43e4259cf802b2286d36305caa57ca2622959b95 100644 --- a/src/scdaq.cc +++ b/src/scdaq.cc @@ -39,12 +39,12 @@ using namespace std; bool silent = false; -int run_pipeline( int nthreads, ctrl& control, config *conf) +int run_pipeline( int nbThreads, ctrl& control, config& conf ) { - config::InputType input = conf->getInput(); + config::InputType input = conf.getInput(); - size_t MAX_BYTES_PER_INPUT_SLICE = conf->getDmaPacketBufferSize(); - size_t TOTAL_SLICES = conf->getNumberOfDmaPacketBuffers(); + size_t MAX_BYTES_PER_INPUT_SLICE = conf.getDmaPacketBufferSize(); + size_t TOTAL_SLICES = conf.getNumberOfDmaPacketBuffers(); // Create empty input reader, will assing later when we know what is the data source std::shared_ptr<InputFilter> input_filter; @@ -54,20 +54,20 @@ int run_pipeline( int nthreads, ctrl& control, config *conf) if (input == config::InputType::FILE) { // Create file-reading writing stage and add it to the pipeline - MAX_BYTES_PER_INPUT_SLICE = 192*conf->getBlocksPerInputBuffer(); - TOTAL_SLICES = conf->getNumInputBuffers(); + MAX_BYTES_PER_INPUT_SLICE = 192*conf.getBlocksPerInputBuffer(); + TOTAL_SLICES = conf.getNumInputBuffers(); - //input_filter = std::make_shared<FileInputFilter>( conf->getInputFile(), MAX_BYTES_PER_INPUT_SLICE, TOTAL_SLICES ); + //input_filter = std::make_shared<FileInputFilter>( conf.getInputFile(), MAX_BYTES_PER_INPUT_SLICE, TOTAL_SLICES ); throw std::runtime_error("input type FILE is temporarily not supported"); } else if (input == config::InputType::DMA) { // Create DMA reader - //input_filter = std::make_shared<DmaInputFilter>( conf->getDmaDevice(), MAX_BYTES_PER_INPUT_SLICE, TOTAL_SLICES ); + //input_filter = std::make_shared<DmaInputFilter>( conf.getDmaDevice(), MAX_BYTES_PER_INPUT_SLICE, TOTAL_SLICES ); throw std::runtime_error("input type DMA is temporarily not supported"); } else if (input == config::InputType::FILEDMA) { // Create FILE DMA reader - input_filter = std::make_shared<FileDmaInputFilter>( conf->getInputFile(), MAX_BYTES_PER_INPUT_SLICE, TOTAL_SLICES, control ); + input_filter = std::make_shared<FileDmaInputFilter>( conf.getInputFile(), MAX_BYTES_PER_INPUT_SLICE, TOTAL_SLICES, control ); } else if (input == config::InputType::WZDMA ) { // Create WZ DMA reader @@ -87,23 +87,23 @@ int run_pipeline( int nthreads, ctrl& control, config *conf) // Create reformatter and add it to the pipeline // TODO: Created here so we are not subject of scoping, fix later... StreamProcessor stream_processor(MAX_BYTES_PER_INPUT_SLICE); - if ( conf->getEnableStreamProcessor() ) { + if ( conf.getEnableStreamProcessor() ) { pipeline.add_filter( stream_processor ); } // Create elastic populator (if requested) - std::string url = conf->getElasticUrl(); + std::string url = conf.getElasticUrl(); // TODO: Created here so we are not subject of scoping, fix later... ElasticProcessor elastic_processor(MAX_BYTES_PER_INPUT_SLICE, &control, url, - conf->getPtCut(), - conf->getQualCut()); - if ( conf->getEnableElasticProcessor() ) { + conf.getPtCut(), + conf.getQualCut()); + if ( conf.getEnableElasticProcessor() ) { pipeline.add_filter(elastic_processor); } - std::string output_file_base = conf->getOutputFilenameBase(); + std::string output_file_base = conf.getOutputFilenameBase(); // Create file-writing stage and add it to the pipeline OutputStream output_stream( output_file_base.c_str(), control); @@ -113,7 +113,7 @@ int run_pipeline( int nthreads, ctrl& control, config *conf) tbb::tick_count t0 = tbb::tick_count::now(); // Need more than one token in flight per thread to keep all threads // busy; 2-4 works - pipeline.run( nthreads*4 ); + pipeline.run( nbThreads * 4 ); tbb::tick_count t1 = tbb::tick_count::now(); if ( !silent ) { @@ -147,9 +147,10 @@ int main( int argc, char* argv[] ) { server s(io_service, conf.getPortNumber(), control); boost::thread t(boost::bind(&boost::asio::io_service::run, &io_service)); - int p = conf.getNumThreads(); - tbb::task_scheduler_init init(p); - if(!run_pipeline (p, control, &conf)) + int nbThreads = conf.getNumThreads(); + + tbb::task_scheduler_init init( nbThreads ); + if (!run_pipeline (nbThreads, control, conf)) return 1; // utility::report_elapsed_time((tbb::tick_count::now() - mainStartTime).seconds()); diff --git a/src/scdaq.conf b/src/scdaq.conf index 180986f89eacfb5bf753501119529eba951ea600..c207d5cdce3ac08fcd0158f0059e373e017299d4 100644 --- a/src/scdaq.conf +++ b/src/scdaq.conf @@ -20,7 +20,7 @@ dma_number_of_packet_buffers:1000 # Print report each N packets, use 0 to disable packets_per_report:5000 -#packets_per_report:10 +#packets_per_report:1 ## Settings for file input #input_file:/dev/shm/testdata.bin @@ -34,12 +34,14 @@ blocks_buffer:1000 output_filename_base:/fff/BU0/ramdisk/scdaq max_file_size:8589934592 -threads:8 +# Elastics processor port:8000 elastic_url:http://something.somewhere pt_cut:7 quality_cut:12 # Pipeline settings +threads:8 + enable_stream_processor:yes enable_elastic_processor:no