]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fix in sigmaZ assignment for traclets with padrow crossing
authorshahoian <ruben.shahoyan@cern.ch>
Fri, 4 Apr 2014 13:36:13 +0000 (15:36 +0200)
committershahoian <ruben.shahoyan@cern.ch>
Fri, 4 Apr 2014 13:36:13 +0000 (15:36 +0200)
TRD/AliTRDseedV1.cxx

index e06f1c2cf610d0cbb733cda16df8ecc4d2b92b1a..2babc75a58f5b54d2273c2d0115891ff1e62e620 100644 (file)
@@ -865,7 +865,7 @@ void AliTRDseedV1::GetCovAt(Double_t x, Double_t *cov) const
     cov[1] = GetTilt()*(sz2 - sy2)*correction;
     cov[2] = (t2*sy2+sz2)*correction;
   } else {
-    cov[0] = sy2; cov[1] = 0.; cov[2] = sy2;
+    cov[0] = sy2; cov[1] = 0.; cov[2] = sz2;
   }
 
   AliDebug(4, Form("C(%6.1f %+6.3f %6.1f)  RC[%c]", 1.e4*TMath::Sqrt(cov[0]), cov[1], 1.e4*TMath::Sqrt(cov[2]), IsRowCross()?'y':'n'));