Skip to content

Commit

Permalink
[PWGJE/EMCAL-670] Fix return for cell time correction in MC
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Strangmann committed Dec 6, 2024
1 parent 379dce2 commit c6375c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PWGJE/TableProducer/emcalCorrectionTask.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
};

Expand Down

0 comments on commit c6375c4

Please sign in to comment.