]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG/PROOF-INF.PWGflowBase/SETUP.C
new class for SP with more subevents
[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("libPWGflowBase");
7
8   // Set the include paths
9   TString incpath = gSystem->GetIncludePath();
10   incpath.Prepend("-I./PWGflowBase/FLOW/Base ");
11   gSystem->SetIncludePath(incpath);
12
13   // Set our location, so that other packages can find us
14   gSystem->Setenv("PWGflowBase_INCLUDE", "PWGflowBase/FLOW/Base");
15 }
16