@@ -181,12 +181,12 @@ struct HfCandidateCreatorXic0XicpToHadronic {
181181 }
182182
183183 // Exit if workflow is not configured correctly - More than one process enabled for Xic0
184- if (std::accumulate (processesXic0.begin (), processesXic0.end (), 1 ) > 1 ) {
184+ if (std::accumulate (processesXic0.begin (), processesXic0.end (), 0 ) > 1 ) {
185185 LOGP (fatal, " More than one process fucntion for Xic0 was enabled. Please choose only one process function" );
186186 }
187187
188- // Exit if workflow is not configured correctly - More than one process enabled for Xic0
189- if (std::accumulate (processesXicp.begin (), processesXicp.end (), 1 ) > 1 ) {
188+ // Exit if workflow is not configured correctly - More than one process enabled for Xicp
189+ if (std::accumulate (processesXicp.begin (), processesXicp.end (), 0 ) > 1 ) {
190190 LOGP (fatal, " More than one process fucntion for Xicp was enabled. Please choose only one process function" );
191191 }
192192
@@ -196,7 +196,7 @@ struct HfCandidateCreatorXic0XicpToHadronic {
196196 }
197197
198198 // Initialization for Xic0
199- if (std::accumulate (processesXic0.begin (), processesXic0.end (), 1 ) == 1 ) {
199+ if (std::accumulate (processesXic0.begin (), processesXic0.end (), 0 ) == 1 ) {
200200
201201 // Set histograms
202202 if (configs.fillHistograms ) {
@@ -252,7 +252,7 @@ struct HfCandidateCreatorXic0XicpToHadronic {
252252 }// end of Xic0 initilization
253253
254254 // Initialization for Xicp
255- if (std::accumulate (processesXicp.begin (), processesXicp.end (), 1 ) == 1 ) {
255+ if (std::accumulate (processesXicp.begin (), processesXicp.end (), 0 ) == 1 ) {
256256
257257 if (configs.fillHistograms ) {
258258 registry.add (" hVertexerType" , " Use KF or DCAFitterN;Vertexer type;entries" , {HistType::kTH1F , {{2 , -0.5 , 1.5 }}}); // See o2::aod::hf_cand::VertexerType
@@ -304,16 +304,13 @@ struct HfCandidateCreatorXic0XicpToHadronic {
304304
305305 }// end of initialization
306306
307-
308-
309307 // /////////////////////////////////////////////////////////
310308 // //
311309 // //
312310 // Xic0 //
313311 // //
314312 // /////////////////////////////////////////////////////////
315313
316-
317314 // template function for running xic0 reconstruction via DCAFitter method
318315 // templated for various centrality estimator usage
319316 template <o2::hf_centrality::CentralityEstimator centEstimator, typename Colls>
@@ -1406,7 +1403,7 @@ struct HfCandidateCreatorXic0XicpToHadronic {
14061403 {
14071404 runCreatorXic0WithDCAFitter<CentralityEstimator::None, SelectedCollisions>(collisions, candidates, cascadesLinked, cascFull, tracks, bcsWithTimestamps);
14081405 }
1409- PROCESS_SWITCH (HfCandidateCreatorXic0XicpToHadronic, processXic0WithDCAFitterNoCent, " Xic0 reconstruction via DcaFitter method, no centrality" , false );
1406+ PROCESS_SWITCH (HfCandidateCreatorXic0XicpToHadronic, processXic0WithDCAFitterNoCent, " Xic0 reconstruction via DcaFitter method, no centrality" , true );
14101407
14111408 void processXicpWithDCAFitterNoCent ( SelectedCollisions const & collisions,
14121409 aod::HfCascLf3Prongs const & candidates,
@@ -1436,7 +1433,7 @@ struct HfCandidateCreatorXic0XicpToHadronic {
14361433 {
14371434 runCreatorXic0WithKfParticle<CentralityEstimator::None, SelectedCollisions>(collisions, candidates, kfCascadesLinked, kfCascFull, tracks, bcsWithTimestamps);
14381435 }
1439- PROCESS_SWITCH (HfCandidateCreatorXic0XicpToHadronic, processXic0WithKFParticleNoCent, " Xic0 reconstruction via KFParticle method, no centrality" , true );
1436+ PROCESS_SWITCH (HfCandidateCreatorXic0XicpToHadronic, processXic0WithKFParticleNoCent, " Xic0 reconstruction via KFParticle method, no centrality" , false );
14401437
14411438 void processXicpWithKFParticleNoCent ( SelectedCollisions const & collisions,
14421439 aod::HfCascLf3Prongs const & candidates,
0 commit comments