From 6e967bfd3d3487858674fbc49fd9590ab4e1d6aa Mon Sep 17 00:00:00 2001 From: skowron Date: Mon, 5 Jul 2004 20:40:41 +0000 Subject: [PATCH] Cosmetic correction --- ANALYSIS/AliRunAnalysis.cxx | 38 ++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/ANALYSIS/AliRunAnalysis.cxx b/ANALYSIS/AliRunAnalysis.cxx index 2dfdbeb18a4..71f734e4bb8 100644 --- a/ANALYSIS/AliRunAnalysis.cxx +++ b/ANALYSIS/AliRunAnalysis.cxx @@ -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 -- 2.31.1