]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG/PROOF-INF.PWGflowTasks/SETUP.C
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWG / PROOF-INF.PWGflowTasks / SETUP.C
CommitLineData
23923a35 1void SETUP() {
15725198 2 // Set the library paths
50719e6c 3 TString dypath = gSystem->GetDynamicPath();
15725198 4 dypath.Prepend("./PWGflowTasks/:");
50719e6c 5 gSystem->SetDynamicPath(dypath);
60875c3c 6 gSystem->Load("libPWGflowBase");
2e311896 7 gSystem->Load("libPWGflowTasks");
23923a35 8
9 // Set the include paths
15725198 10 TString incpath = gSystem->GetIncludePath();
11 incpath.Prepend("-I./PWGflowTasks/FLOW/Tasks -I$ALICE_ROOT/TOF ");
12 gSystem->SetIncludePath(incpath);
23923a35 13
14 // Set our location, so that other packages can find us
2e311896 15 gSystem->Setenv("PWGflowTasks_INCLUDE", "PWGflowTasks/FLOW/Tasks");
23923a35 16}
17