]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/rootlogon.C
New class AliESDEvent, backward compatibility with the old AliESD (Christian)
[u/mrichter/AliRoot.git] / MUON / rootlogon.C
index ac15fa132f8609965e1643726a3221922c3620be..f98af17eea86e732125f7cec5b52e58f7b916ad7 100644 (file)
@@ -6,5 +6,18 @@
 /// By Laurent Aphecetche
 
 {
-  gSystem->SetIncludePath("-I${ALICE_ROOT}/include -I${ALICE_ROOT}/MUON -I${ALICE_ROOT}/MUON/mapping");
+  cout << "Loading MUON libraries ..." << endl;
+  gROOT->LoadMacro("${ALICE_ROOT}/MUON/loadlibs.C");
+  gInterpreter->ProcessLine("loadlibs()");
+    
+  cout << "Setting include path ..." << endl;
+  TString includePath = "-I${ALICE_ROOT}/include ";
+  includePath        += "-I${ALICE_ROOT}/RAW ";
+  includePath        += "-I${ALICE_ROOT}/FASTSIM ";
+  includePath        += "-I${ALICE_ROOT}/EVGEN ";
+  includePath        += "-I${ALICE_ROOT}/SHUTTLE/TestShuttle ";
+  includePath        += "-I${ALICE_ROOT}/ITS ";
+  includePath        += "-I${ALICE_ROOT}/MUON ";
+  includePath        += "-I${ALICE_ROOT}/MUON/mapping";
+  gSystem->SetIncludePath(includePath.Data());
 }