]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/rootlogon.C
from Y. Schutz
[u/mrichter/AliRoot.git] / MUON / rootlogon.C
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2  * See cxx source for full Copyright notice                               */
3
4 /* $Id$ */
5
6 /// By Laurent Aphecetche
7
8 {
9   cout << "Loading MUON libraries ..." << endl;
10   gROOT->LoadMacro("${ALICE_ROOT}/MUON/loadlibs.C");
11   gInterpreter->ProcessLine("loadlibs()");
12     
13   cout << "Setting include path ..." << endl;
14   TString includePath = "-I${ALICE_ROOT}/include ";
15   includePath        += "-I${ALICE_ROOT}/RAW ";
16   includePath        += "-I${ALICE_ROOT}/FASTSIM ";
17   includePath        += "-I${ALICE_ROOT}/EVGEN ";
18   includePath        += "-I${ALICE_ROOT}/SHUTTLE/TestShuttle ";
19   includePath        += "-I${ALICE_ROOT}/ITS ";
20   includePath        += "-I${ALICE_ROOT}/MUON ";
21   includePath        += "-I${ALICE_ROOT}/MUON/mapping";
22   gSystem->SetIncludePath(includePath.Data());
23 }