4749653c |
1 | void SETUP() { |
2 | CheckLoadLibrary("libANALYSISalice"); |
c8dc3eb7 |
3 | CheckLoadLibrary("libCORRFW"); |
4749653c |
4 | CheckLoadLibrary("libPWG2resonances"); |
5 | |
6 | // Set the include paths |
7 | gROOT->ProcessLine(".include PWG2resonances"); |
272c2ad9 |
8 | gROOT->ProcessLine(".include PWG2resonances/RESONANCES"); |
4749653c |
9 | |
10 | // Set our location, so that other packages can find us |
00001783 |
11 | gSystem->Setenv("PWG2resonances_INCLUDE", "PWG2resonances/RESONANCES"); |
4749653c |
12 | } |
13 | |
14 | Int_t CheckLoadLibrary(const char* library) { |
15 | // checks if a library is already loaded, if not loads the library |
16 | |
17 | if (strlen(gSystem->GetLibraries(Form("%s.so", library), "", kFALSE)) > 0) |
18 | return 1; |
272c2ad9 |
19 | |
4749653c |
20 | return gSystem->Load(library); |
21 | } |