]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG/PROOF-INF.PWGflowTasks/SETUP.C
Version where the process for HLT and vdrift on DAQ are off(Raphaelle)
[u/mrichter/AliRoot.git] / PWG / PROOF-INF.PWGflowTasks / SETUP.C
1 void SETUP() {
2   // Set the library paths
3   TString dypath = gSystem->GetDynamicPath();
4   dypath.Prepend("./PWGflowTasks/:");
5   gSystem->SetDynamicPath(dypath);
6   gSystem->Load("libPWGflowBase");
7   gSystem->Load("libPWGflowTasks");
8   
9   // Set the include paths
10   TString incpath = gSystem->GetIncludePath();
11   incpath.Prepend("-I./PWGflowTasks/FLOW/Tasks -I$ALICE_ROOT/TOF ");
12   gSystem->SetIncludePath(incpath);
13
14   // Set our location, so that other packages can find us
15   gSystem->Setenv("PWGflowTasks_INCLUDE", "PWGflowTasks/FLOW/Tasks");
16 }
17