Skip to content

Commit

Permalink
Fix issue in normalizing T0 offset
Browse files Browse the repository at this point in the history
  • Loading branch information
wiechula committed Nov 27, 2023
1 parent 8e73925 commit b8c509c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Detectors/TPC/calibration/src/VDriftHelper.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ void VDriftHelper::accountDriftCorrectionITSTPCTgl(const VDriftCorrFact* calib)
}
if (!mForceParamOffset && mVDTPCITSTgl.refTimeOffset != prevRefTOffs) { // we want to keep the same reference over the run, this should not happen!
LOGP(warn, "VDriftHelper: renorming updated TPC refTimeOffset={}/correction={} previous refTimeOffset {}, source: {}", mVDTPCITSTgl.refTimeOffset, mVDTPCITSTgl.timeOffsetCorr, prevRefTOffs, getSourceName());
mVDTPCITSTgl.normalize(prevRefTOffs);
mVDTPCITSTgl.normalizeOffset(prevRefTOffs);
}
}
}
Expand Down

0 comments on commit b8c509c

Please sign in to comment.