]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGLF/PROOF-INF.PWGLFSTRANGENESS/SETUP.C
Restored PAR file functionallity: make test-par-all works
[u/mrichter/AliRoot.git] / PWGLF / PROOF-INF.PWGLFSTRANGENESS / SETUP.C
CommitLineData
df73c7c9 1void SETUP() {
4ce3ffc5 2 CheckLoadLibrary("libPWGLFSTRANGENESS");
df73c7c9 3
4 // Set the include paths
4ce3ffc5 5 gROOT->ProcessLine(".include PWGLFSTRANGENESS/STRANGENESS");
df73c7c9 6
7 // Set our location, so that other packages can find us
4ce3ffc5 8 gSystem->Setenv("PWGLFSTRANGENESS_INCLUDE", "PWGLFSTRANGENESS");
df73c7c9 9}
10
11Int_t CheckLoadLibrary(const char* library) {
12 // checks if a library is already loaded, if not loads the library
13
14 if (strlen(gSystem->GetLibraries(Form("%s.so", library), "", kFALSE)) > 0)
15 return 1;
16
17 return gSystem->Load(library);
18}