@@ -65,7 +65,7 @@ void customize(std::vector<ConfigParamSpec>& workflowOptions)
6565 {" dropTFsRandom" , VariantType::Int, 0 , {" Drop randomly whole TFs every dropTFsRandom TFs (for all CRUs)" }},
6666 {" dropTFsRange" , VariantType::String, " " , {" Drop range of TFs" }},
6767 {" hbfutils-config" , VariantType::String, " hbfutils" , {" config file for HBFUtils (or none) to get number of orbits per TF" }},
68- {" nthreads" , VariantType::Int, 1 , {" Number of threads." }},
68+ // {"nthreads", VariantType::Int, 1, {"Number of threads."}},
6969 {" iter" , VariantType::Int, 0 , {" Iteration for testing the workflow (.....)" }},
7070 {" configKeyValues" , VariantType::String, " " , {" Semicolon separated key=value strings" }}};
7171 o2::raw::HBFUtilsInitializer::addConfigOption (options);
@@ -97,7 +97,7 @@ WorkflowSpec defineDataProcessing(ConfigContext const& config)
9797 const auto timeframes = static_cast <unsigned int >(config.options ().get <int >(" timeframes" ));
9898 const auto iondrifttime = static_cast <unsigned int >(config.options ().get <int >(" ion-drift-time" ));
9999 const auto nFourierCoefficients = std::clamp (static_cast <unsigned int >(config.options ().get <int >(" nFourierCoeff" )), static_cast <unsigned int >(0 ), iondrifttime + 2 );
100- const auto nthreads = static_cast <unsigned int >(config.options ().get <int >(" nthreads" ));
100+ // const auto nthreads = static_cast<unsigned int>(config.options().get<int>("nthreads"));
101101 const auto iter = static_cast <unsigned int >(config.options ().get <int >(" iter" ));
102102 const auto seed = static_cast <unsigned int >(config.options ().get <int >(" seed" ));
103103 const auto idcgenlanes = static_cast <unsigned int >(config.options ().get <int >(" idc-gen-lanes" ));
@@ -149,9 +149,9 @@ WorkflowSpec defineDataProcessing(ConfigContext const& config)
149149 }
150150 }
151151
152- IDCAverageGroup<IDCAverageGroupTPC>::setNThreads (nthreads);
152+ // IDCAverageGroup<IDCAverageGroupTPC>::setNThreads(nthreads);
153153 TPCFourierTransformEPNSpec::IDCFType::setFFT (!fft);
154- TPCFourierTransformAggregatorSpec::IDCFType::setNThreads (nthreads);
154+ // TPCFourierTransformAggregatorSpec::IDCFType::setNThreads(nthreads);
155155 TPCFourierTransformAggregatorSpec::IDCFType::setFFT (!fft);
156156 return workflow;
157157}
0 commit comments