Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions PWGJE/TableProducer/emcalCorrectionTask.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -937,9 +937,9 @@ struct EmcalCorrectionTask {
timeshift = 1.9; // Parameters extracted from LHC24aj (pp), but also usable for other periods
}
// Temporary extra shift for bug in time calibraiton of apass4 Pb-Pb 2024, requires pos shift of 2*8.8 ns for low gain cells
if(cellType == emcal::ChannelType_t::LOW_GAIN){
for(const auto& range : mExtraTimeShiftRunRanges){
if(runNumber >= range.first && runNumber <= range.second){
if (cellType == emcal::ChannelType_t::LOW_GAIN) {
for (const auto& range : mExtraTimeShiftRunRanges) {
if (runNumber >= range.first && runNumber <= range.second) {
timeshift += 2 * 8.8;
}
}
Expand Down