]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fix in the event loop
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 24 Apr 2006 21:11:15 +0000 (21:11 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 24 Apr 2006 21:11:15 +0000 (21:11 +0000)
RICH/AliRICHReconstructor.cxx

index 65f98e1419f89f63e0ef85f177469c07c2edac95..996c613c9c2a33184c266a1cc434bc0658a8c4a0 100644 (file)
@@ -163,7 +163,7 @@ void AliRICHReconstructor::Reconstruct(AliRunLoader *pAL)const
   pRL->LoadRecPoints("recreate");
   
   for(Int_t iEvtN=0;iEvtN<pAL->GetNumberOfEvents();iEvtN++){//events loop
-    pAL->GetEvent(iEvtN++); AliDebug(1,Form("Processing event %i...",iEvtN)); //switch current directory to next event    
+    pAL->GetEvent(iEvtN); AliDebug(1,Form("Processing event %i...",iEvtN)); //switch current directory to next event    
     pRL->TreeD()->GetEntry(0);  pRL->MakeTree("R");  pRich->MakeBranch("R");  //load digits to memory  and create branches for clusters              
     for(Int_t iChN=1;iChN<=7;iChN++){//chambers loop
       if(pRich->Digs(iChN)->GetEntriesFast()>0) Dig2Clu(pRich->Digs(iChN),pRich->Clus(iChN));//cluster finder for the current chamber if any digits present