]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWG2/AnalysisMacros/Proof/runAnalysis.C
Few mods (Boris)
[u/mrichter/AliRoot.git] / PWG2 / AnalysisMacros / Proof / runAnalysis.C
index c74729d7ad88807152e0fe874c1322a603d90a01..3951bff8835248a1e2e09683e467688c28822d29 100644 (file)
@@ -2,16 +2,6 @@ void runAnalysis() {
   TStopwatch timer;
   timer.Start();
   
-  runProofESD("AliAnalysisTaskPt.cxx+");
-
-  timer.Stop();
-  timer.Print();
-}
-
-//==========================================//
-void runProofESD(const char *selectorfile) {
-  //the next line should point to the local $ALICE_ROOT
-  //that contains the latest ANALYSIS developments
   gSystem->AddIncludePath("-I\"$ALICE_ROOT/include\"");
   printf("****** Connect to PROOF *******\n");
   TProof::Open("proof://<username>@lxb6046.cern.ch"); 
@@ -26,20 +16,20 @@ void runProofESD(const char *selectorfile) {
 
   gProof->GetManager()->ShowROOTVersions();
   gProof->ShowEnabledPackages();
-  
+
   // You should get this macro and the txt file from:
   // http://aliceinfo.cern.ch/Offline/Analysis/CAF/
   gROOT->LoadMacro("CreateESDChain.C");
   TChain* chain = 0x0;
   chain = CreateESDChain("ESD1.txt",100);
 
-  gROOT->LoadMacro(selectorfile);
-  gProof->Load(selectorfile);
+  gROOT->LoadMacro("AliAnalysisTaskPt.cxx+");
+  gProof->Load("AliAnalysisTaskPt.cxx+");
   gROOT->LoadMacro("demoCAF.C");
   demoCAF(chain,"proof");
  
   gSystem->Exec("rm -rf ESD ANALYSIS");
-}
-
 
-                                                                                                                                               
+  timer.Stop();
+  timer.Print();
+}