]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/PROOF-INF.CDB/SETUP.C
implementing proper cleanup of internal variables in Clear, renaming member variable...
[u/mrichter/AliRoot.git] / STEER / PROOF-INF.CDB / SETUP.C
CommitLineData
00d878fb 1void SETUP()
2{
3 // Load some ROOT libraries
4
5 gSystem->Load("libVMC");
6 gSystem->Load("libNet");
7 gSystem->Load("libTree");
8
9 // Load libSTEERBase, CDB depends on it
10 gSystem->Load("libSTEERBase");
11
12 // Load the CDB library
13 gSystem->Load("libCDB");
14
15 // Set the include paths
16 gROOT->ProcessLine(".include CDB");
17
18 // Set our location, so that other packages can find us
1076657b 19 gSystem->Setenv("CDB_INCLUDE", "CDB/CDB");
00d878fb 20}