]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
External instead of internal covariance matrix used
authorskowron <skowron@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 24 Feb 2004 16:44:48 +0000 (16:44 +0000)
committerskowron <skowron@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 24 Feb 2004 16:44:48 +0000 (16:44 +0000)
HBTAN/AliHBTReaderTPC.cxx

index dfee23af8eeaa033be2aa8b6bbc919676c2842eb..7e9478defff8152783049cd75040a77b7601763f 100644 (file)
@@ -461,7 +461,7 @@ Bool_t AliHBTReaderTPC::CheckTrack(AliTPCtrack* t) const
   if ( (chisqpercl < fNChi2PerClustMin) || (chisqpercl > fNChi2PerClustMax) ) return kTRUE;
   
   Double_t cc[15];
-  t->GetCovariance(cc);
+  t->GetExternalCovariance(cc);
 
   if ( (cc[0]  < fC00Min) || (cc[0]  > fC00Max) ) return kTRUE;
   if ( (cc[2]  < fC11Min) || (cc[2]  > fC11Max) ) return kTRUE;