]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/PROOF-INF.AOD/SETUP.C
MCEventHandler derives from InputEventHandler
[u/mrichter/AliRoot.git] / STEER / PROOF-INF.AOD / SETUP.C
CommitLineData
d56b8915 1void SETUP()
2{
c6109fad 3 // Load some ROOT libraries
4
5 gSystem->Load("libVMC");
6 gSystem->Load("libNet");
7 gSystem->Load("libTree");
8
9 // Load libSTEERBase, AOD depends on it
10 gSystem->Load("libSTEERBase");
11
12 // Load the AOD library
d56b8915 13 gSystem->Load("libAOD");
14
3e228187 15 // Set the include paths
d56b8915 16 gROOT->ProcessLine(".include AOD");
17
18 // Set our location, so that other packages can find us
1076657b 19 gSystem->Setenv("AOD_INCLUDE", "AOD/AOD");
d56b8915 20}