]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/PROOF-INF.PWG2resonances/SETUP.C
Added CINT1-X-NOPF-FASTNOTRD to triggers
[u/mrichter/AliRoot.git] / PWG2 / PROOF-INF.PWG2resonances / SETUP.C
1 void SETUP() {
2   CheckLoadLibrary("libANALYSISalice");
3   CheckLoadLibrary("libCORRFW");
4   CheckLoadLibrary("libPWG2resonances");
5
6   // Set the include paths
7   gROOT->ProcessLine(".include PWG2resonances");
8   gROOT->ProcessLine(".include PWG2resonances/RESONANCES");
9
10   // Set our location, so that other packages can find us
11   gSystem->Setenv("PWG2resonances_INCLUDE", "PWG2resonances/RESONANCES");
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;
19
20   return gSystem->Load(library);
21 }