From f490f571b60f6f5b96c7ac2a7f260d390784f1b2 Mon Sep 17 00:00:00 2001 From: Dmitri Peresunko Date: Thu, 28 Oct 2021 10:32:43 +0300 Subject: [PATCH] Do not quit on empty payload --- Detectors/PHOS/workflow/src/ClusterizerSpec.cxx | 2 -- 1 file changed, 2 deletions(-) diff --git a/Detectors/PHOS/workflow/src/ClusterizerSpec.cxx b/Detectors/PHOS/workflow/src/ClusterizerSpec.cxx index 6718f0c4a6901..9058736685bdf 100644 --- a/Detectors/PHOS/workflow/src/ClusterizerSpec.cxx +++ b/Detectors/PHOS/workflow/src/ClusterizerSpec.cxx @@ -61,7 +61,6 @@ void ClusterizerSpec::run(framework::ProcessingContext& ctx) auto const* phosheader = o2::framework::DataRefUtils::getHeader(dataref); if (!phosheader->mHasPayload) { LOG(DEBUG) << "[PHOSClusterizer - run] No more digits" << std::endl; - ctx.services().get().readyToQuit(framework::QuitRequest::Me); return; } @@ -107,7 +106,6 @@ void ClusterizerSpec::run(framework::ProcessingContext& ctx) if (mPropagateMC) { ctx.outputs().snapshot(o2::framework::Output{"PHS", "CLUSTERTRUEMC", 0, o2::framework::Lifetime::Timeframe}, mOutputTruthCont); } - ctx.services().get().readyToQuit(framework::QuitRequest::Me); } o2::framework::DataProcessorSpec o2::phos::reco_workflow::getClusterizerSpec(bool propagateMC, bool fullClu)