]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGLF/PROOF-INF.PWGLFforward/SETUP.C
Option for kine only simulation added.
[u/mrichter/AliRoot.git] / PWGLF / PROOF-INF.PWGLFforward / SETUP.C
CommitLineData
41aae192 1void SETUP() {
b313ec91 2 CheckLoadLibrary("libPWGLFforward");
41aae192 3
4 // Set the include paths
b313ec91 5 gROOT->ProcessLine(".include PWGLFforward/FORWARD");
816bbbf4 6 gROOT->ProcessLine(".include PWGLFforward/FORWARD/analysis");
41aae192 7
8 // Set our location, so that other packages can find us
816bbbf4 9 gSystem->Setenv("PWGLFforward_INCLUDE", "PWGLFforward/FORWARD");
41aae192 10}
11
12Int_t CheckLoadLibrary(const char* library) {
13 // checks if a library is already loaded, if not loads the library
14
15 if (strlen(gSystem->GetLibraries(Form("%s.so", library), "", kFALSE)) > 0)
16 return 1;
17
18 return gSystem->Load(library);
19}