void SETUP() { CheckLoadLibrary("libPWGCFfemtoscopyUser"); // Set the include paths gROOT->ProcessLine(".include PWGCFfemtoscopyUser/FEMTOSCOPY/AliFemtoUser"); // Set our location, so that other packages can find us gSystem->Setenv("PWGCFfemtoscopyUser_INCLUDE", "PWGCFfemtoscopyUser/FEMTOSCOPY/AliFemtoUser"); } Int_t CheckLoadLibrary(const char* library) { // checks if a library is already loaded, if not loads the library if (strlen(gSystem->GetLibraries(library, "", kFALSE)) > 0) return 1; return gSystem->Load(library); }