From 5c8d0ec43aecf31d4cd3833da4c3310cb13e0f8f Mon Sep 17 00:00:00 2001 From: marian Date: Mon, 21 Feb 2011 14:46:19 +0000 Subject: [PATCH] Bug fix -time dependent alignment/calibration was not applied --- TPC/AliTPCTransform.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TPC/AliTPCTransform.cxx b/TPC/AliTPCTransform.cxx index 91d4affe129..b6c0b590326 100755 --- a/TPC/AliTPCTransform.cxx +++ b/TPC/AliTPCTransform.cxx @@ -202,7 +202,7 @@ void AliTPCTransform::Transform(Double_t *x,Int_t *i,UInt_t /*time*/, xx[2]=distPoint[2]; if (correctionDelta&&fCurrentRecoParam->GetUseAlignmentTime()){ // appply time dependent correction if available and enabled Float_t distPointDelta[3]={xx[0],xx[1],xx[2]}; - correction->CorrectPoint(distPointDelta, sector); + correctionDelta->CorrectPoint(distPointDelta, sector); xx[0]=distPointDelta[0]; xx[1]=distPointDelta[1]; xx[2]=distPointDelta[2]; -- 2.43.0