]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/PROOF-INF.ESD/SETUP.C
fixing env var in par file creation (after directory relocation)
[u/mrichter/AliRoot.git] / STEER / PROOF-INF.ESD / SETUP.C
1 void SETUP()
2 {
3    // Load some ROOT libraries
4
5    gSystem->Load("libVMC");
6    gSystem->Load("libNet");
7    gSystem->Load("libTree");
8
9    // Load libSTEERBase, ESD depends on it
10    gSystem->Load("libSTEERBase");
11
12    // Load the ESD library
13    gSystem->Load("libESD");
14
15    // Set the include paths
16    gROOT->ProcessLine(".include ESD");
17
18    // Set our location, so that other packages can find us
19    gSystem->Setenv("ESD_INCLUDE", "ESD/ESD");
20 }