]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGLF/PROOF-INF.PWGLFSTRANGENESS/SETUP.C
Added daughters' p and pt to the type list of AliRsnMiniValue + modified macros for...
[u/mrichter/AliRoot.git] / PWGLF / PROOF-INF.PWGLFSTRANGENESS / SETUP.C
1 void SETUP() {
2   CheckLoadLibrary("libPWGLFSTRANGENESS");
3
4   // Set the include paths
5   gROOT->ProcessLine(".include PWGLFSTRANGENESS/STRANGENESS");
6   gROOT->ProcessLine(".include PWGLFSTRANGENESS/STRANGENESS/LambdaK0PbPb");
7
8   // Set our location, so that other packages can find us
9   gSystem->Setenv("PWGLFSTRANGENESS_INCLUDE", "PWGLFSTRANGENESS");
10 }
11
12 Int_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 }