2 CheckLoadLibrary("libANALYSISalice");
3 CheckLoadLibrary("libPWG2resonances");
5 // Set the include paths
6 gROOT->ProcessLine(".include PWG2resonances");
7 gROOT->ProcessLine(".include PWG2resonances/RESONANCES");
9 // Set our location, so that other packages can find us
10 gSystem->Setenv("PWG2resonances_INCLUDE", "PWG2resonances/RESONANCES");
13 Int_t CheckLoadLibrary(const char* library) {
14 // checks if a library is already loaded, if not loads the library
16 if (strlen(gSystem->GetLibraries(Form("%s.so", library), "", kFALSE)) > 0)
19 return gSystem->Load(library);