]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGCF/PROOF-INF.PWGCFfemtoscopyUser/SETUP.C
76a0fc11125900d47667cdc77828af621c42309d
[u/mrichter/AliRoot.git] / PWGCF / PROOF-INF.PWGCFfemtoscopyUser / SETUP.C
1 void SETUP() {
2   CheckLoadLibrary("libPWGCFfemtoscopyUser");
3   
4   // Set the include paths
5   gROOT->ProcessLine(".include PWGCFfemtoscopyUser/FEMTOSCOPY/AliFemtoUser");
6
7   // Set our location, so that other packages can find us
8   gSystem->Setenv("PWGCFfemtoscopyUser_INCLUDE", "PWGCFfemtoscopyUser/FEMTOSCOPY/AliFemtoUser");
9 }
10
11 Int_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 }