]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Removal of debug output. abs replaced by TMath::Abs (T.Kuhr)
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 6 Aug 2004 08:11:33 +0000 (08:11 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 6 Aug 2004 08:11:33 +0000 (08:11 +0000)
ITS/AliITStrackerMI.cxx

index 9bc6edb046946b267f6a151aa0d56b820063171d..f9967da1f319cc38b6afa52be8f31a700fe741e2 100644 (file)
@@ -282,7 +282,7 @@ Int_t AliITStrackerMI::Clusters2Tracks(AliESD *event) {
   for (fPass=0; fPass<2; fPass++) {
      Int_t &constraint=fConstraint[fPass]; if (constraint<0) continue;
      for (Int_t i=0; i<nentr; i++) {
-       cerr<<fPass<<"    "<<i<<'\r';
+//       cerr<<fPass<<"    "<<i<<'\r';
        fCurrentEsdTrack = i;
        AliITStrackV2 *t=(AliITStrackV2*)itsTracks.UncheckedAt(i);
        if (t==0) continue;              //this track has been already tracked
@@ -833,7 +833,7 @@ void AliITStrackerMI::FollowProlongationTree(AliITStrackV2 * otrack, Int_t esdin
     if (fConstraint[fPass]) track.fNSkipped+=1;
     if (!fConstraint[fPass]) {
       track.fD[0] = track.GetD(GetX(),GetY());   
-      track.fNSkipped+=4./(4.+8.*abs(track.fD[0]));
+      track.fNSkipped+=4./(4.+8.*TMath::Abs(track.fD[0]));
       if (track.fN+track.fNDeadZone+track.fNSkipped>6) {
        track.fNSkipped = 6-track.fN+track.fNDeadZone;
       }
@@ -850,7 +850,7 @@ void AliITStrackerMI::FollowProlongationTree(AliITStrackV2 * otrack, Int_t esdin
       if (fConstraint[fPass]) track.fNSkipped+=2;      
       if (!fConstraint[fPass]){
        track.fD[0] = track.GetD(GetX(),GetY());
-       track.fNSkipped+= 7./(7.+8.*abs(track.fD[0]));
+       track.fNSkipped+= 7./(7.+8.*TMath::Abs(track.fD[0]));
        if (track.fN+track.fNDeadZone+track.fNSkipped>6) {
          track.fNSkipped = 6-track.fN+track.fNDeadZone;
        }
@@ -2872,7 +2872,7 @@ void AliITStrackerMI::GetNTeor(Int_t layer, const AliITSclusterV2* /*cl*/, Float
     nz = 2.02+TMath::Abs(phi)*2.35;
     return;
   }
-  ny  = 6.6-2.7*abs(phi);
+  ny  = 6.6-2.7*TMath::Abs(phi);
   nz  = 2.8-3.11*TMath::Abs(phi)+0.45*TMath::Abs(theta);
 }