From c6375c4faba2c182cc9647cfc04e63b1572959fe Mon Sep 17 00:00:00 2001 From: Nicolas Strangmann Date: Fri, 6 Dec 2024 09:41:17 +0100 Subject: [PATCH] [PWGJE/EMCAL-670] Fix return for cell time correction in MC --- PWGJE/TableProducer/emcalCorrectionTask.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PWGJE/TableProducer/emcalCorrectionTask.cxx b/PWGJE/TableProducer/emcalCorrectionTask.cxx index e2a0b1a3a9d..576df1a585a 100644 --- a/PWGJE/TableProducer/emcalCorrectionTask.cxx +++ b/PWGJE/TableProducer/emcalCorrectionTask.cxx @@ -861,8 +861,8 @@ struct EmcalCorrectionTask { timeshift = 1.9; // Parameters extracted from LHC24aj (pp), but also usable for other periods } LOG(debug) << "Shift the cell time by " << timeshift << " + " << timesmear << " ns"; - return timeshift + timesmear; } + return timeshift + timesmear; }; };