- libPhysics have to be loaded now when setting up par files in CAF
[u/mrichter/AliRoot.git] / STEER / PROOF-INF.STEERBase / SETUP.C
1 void SETUP()
2 {
3    // Load some Root libraries needed by STEERBase
4    gSystem->Load("libVMC");
5    gSystem->Load("libNet");
6    gSystem->Load("libTree");
7    gSystem->Load("libPhysics");
8
9    // Load the STEERBase library
10    gSystem->Load("libSTEERBase");
11
12    // Set the include paths
13    gROOT->ProcessLine(".include STEERBase");
14
15    // Set our location, so that other packages can find us
16    gSystem->Setenv("STEERBase_INCLUDE", "STEERBase");
17 }