]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/PROOF-INF.PWG2femtoscopy/SETUP.C
Fixing the .par file creation for PWG2femtoscopy, PWG2femtoscopyUser and PWG2AOD
[u/mrichter/AliRoot.git] / PWG2 / PROOF-INF.PWG2femtoscopy / SETUP.C
CommitLineData
2f8bfdbc 1void SETUP() {
2 CheckLoadLibrary("libPWG2femtoscopy");
3
4 // Set the include paths
5 gROOT->ProcessLine(".include PWG2femtoscopy");
6
7 // Set our location, so that other packages can find us
aad44575 8 gSystem->Setenv("PWG2femtoscopy_INCLUDE", "PWG2femtoscopy/FEMTOSCOPY/AliFemto");
2f8bfdbc 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}