]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fixed a bug related to the usage of the runloader in the HLT tracking.
authorcvetan <cvetan@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 10 Jun 2005 04:25:00 +0000 (04:25 +0000)
committercvetan <cvetan@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 10 Jun 2005 04:25:00 +0000 (04:25 +0000)
HLT/src/AliL3TPCtracker.cxx

index 7fc8aa43c36d9b8a073e6fe3b4a9bbebdc1f4d12..241fc9e23aa32739509d6f7c8979ed91cf9c176d 100644 (file)
@@ -55,6 +55,7 @@ Int_t AliL3TPCtracker::Clusters2Tracks(AliESD *event)
     AliError("Missing runloader!");
     return kTRUE;
   }
+  Int_t iEvent = fRunLoader->GetEventNumber();
   
   Float_t ptmin = 0.1*AliL3Transform::GetSolenoidField();
 
@@ -73,7 +74,7 @@ Int_t AliL3TPCtracker::Clusters2Tracks(AliESD *event)
 
   for(Int_t slice=0; slice<=35; slice++)
     {
-      hough->ReadData(slice);
+      hough->ReadData(slice,iEvent);
       hough->Transform();
       hough->AddAllHistogramsRows();
       hough->FindTrackCandidatesRow();