]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Cosmetic correction
authorskowron <skowron@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 5 Jul 2004 20:40:41 +0000 (20:40 +0000)
committerskowron <skowron@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 5 Jul 2004 20:40:41 +0000 (20:40 +0000)
ANALYSIS/AliRunAnalysis.cxx

index 2dfdbeb18a4c08bd95ab2803c50e2a1f3068b41b..71f734e4bb8bd623ae57552691382eea2f0acca3 100644 (file)
@@ -72,25 +72,25 @@ Int_t AliRunAnalysis::Run()
  
  while (fReader->Next() == kFALSE)
   {
-   AliAOD* eventsim = fReader->GetEventSim();
-   AliAOD* eventrec = fReader->GetEventRec();
-   
-      /******************************/ 
-      /*  Event Cut                 */ 
-      /******************************/ 
-      if ( Rejected(eventrec,eventsim) )
-       {
-         if (AliVAODParticle::GetDebug()) Info("Run","Event rejected by Event Cut");
-         continue; //Did not pass the 
-       }
-      /******************************/ 
-      /*  Process Event             */ 
-      /******************************/ 
-      for (Int_t an = 0; an < fAnalysies.GetEntries(); an++)
-       {
-           AliAnalysis* analysis = (AliAnalysis*)fAnalysies.At(an);
-           analysis->ProcessEvent(eventrec,eventsim);
-       }
+     AliAOD* eventrec = fReader->GetEventRec();
+     AliAOD* eventsim = fReader->GetEventSim();
+
+     /******************************/ 
+     /*  Event Cut                 */ 
+     /******************************/ 
+     if ( Rejected(eventrec,eventsim) )
+      {
+        if (AliVAODParticle::GetDebug()) Info("Run","Event rejected by Event Cut");
+        continue; //Did not pass the 
+      }
+     /******************************/ 
+     /*  Process Event             */ 
+     /******************************/ 
+     for (Int_t an = 0; an < fAnalysies.GetEntries(); an++)
+      {
+          AliAnalysis* analysis = (AliAnalysis*)fAnalysies.At(an);
+          analysis->ProcessEvent(eventrec,eventsim);
+      }
     
   }//end of loop over events