]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG/PROOF-INF.PWGflowBase/SETUP.C
cleanup
[u/mrichter/AliRoot.git] / PWG / PROOF-INF.PWGflowBase / SETUP.C
1 void SETUP() {
2   // Set the library paths
3   TString dypath = gSystem->GetDynamicPath();
4   dypath.Prepend("./PWGflowBase/:");
5   gSystem->SetDynamicPath(dypath);
6   gSystem->Load("libPhysics");
7   gSystem->Load("libHist");
8   gSystem->Load("libVMC");
9   gSystem->Load("libPWGflowBase");
10
11   // Set the include paths
12   TString incpath = gSystem->GetIncludePath();
13   incpath.Prepend("-I./PWGflowBase/FLOW/Base ");
14   gSystem->SetIncludePath(incpath);
15
16   // Set our location, so that other packages can find us
17   gSystem->Setenv("PWGflowBase_INCLUDE", "PWGflowBase/FLOW/Base");
18 }
19