]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ANALYSIS/PROOF-INF.ANALYSIS/SETUP.C
HLTcomp
[u/mrichter/AliRoot.git] / ANALYSIS / PROOF-INF.ANALYSIS / SETUP.C
CommitLineData
c52c2132 1void SETUP()
2{
3 // Load the ANALYSIS library
4 gSystem->Load("libANALYSIS");
5
3e228187 6 // Set the include paths
c52c2132 7 gROOT->ProcessLine(".include ANALYSIS");
8
9 // Set our location, so that other packages can find us
10 gSystem->Setenv("ANALYSIS_INCLUDE", "ANALYSIS");
7c55ebd9 11
8bfe3849 12 // Set our lib coordinates, so that other packages can link to us
13 TString lib = TString::Format("-L%s -lANALYSIS", gSystem->WorkingDirectory());
14 gSystem->Setenv("ANALYSIS_LIBS", lib.Data());
c52c2132 15}