]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
ATO-98 - Temporary Bug fix: Use proper radius range to select TOF space point. Nicer...
authormivanov <marian.ivanov@cern.ch>
Sat, 6 Dec 2014 09:48:25 +0000 (10:48 +0100)
committermivanov <marian.ivanov@cern.ch>
Sat, 6 Dec 2014 09:48:25 +0000 (10:48 +0100)
TPC/Calib/AliTPCcalibTime.cxx

index 6df9bf499df75734e32e97488f08263dc4755877..6fd0df3199a9eefd71a49776ac6acfdbed7b1351 100644 (file)
@@ -1886,7 +1886,7 @@ void  AliTPCcalibTime::ProcessAlignTOF(AliESDtrack *const track, const AliESDfri
     Float_t xyz[3];
     point.GetXYZ(xyz);
     Double_t r=TMath::Sqrt(xyz[0]*xyz[0]+xyz[1]*xyz[1]);
-    if (r<350)  continue;
+    if (r<370)  continue;   // I will be happy to use flag in case it will be implemented in AliTrackPoint - should be requested
     if (r>400)  continue;
     AliTracker::PropagateTrackToBxByBz(&pTPC,r,mass,2.,kTRUE);
     AliTracker::PropagateTrackToBxByBz(&pTPC,r,mass,0.1,kTRUE);