]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGCF/PROOF-INF.PWGCFCorrelationsBase/SETUP.C
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWGCF / PROOF-INF.PWGCFCorrelationsBase / SETUP.C
CommitLineData
9b143719 1void SETUP() {
2 CheckLoadLibrary("libPWGCFCorrelationsBase");
3
4 // Set the include paths
5 gROOT->ProcessLine(".include PWGCFCorrelationsBase/Correlations/Base");
6
7 // Set our location, so that other packages can find us
34fe53ec 8 gSystem->Setenv("PWGCFCorrelationsBase_INCLUDE", "PWGCFCorrelationsBase/Correlations/Base");
9b143719 9}
10
11Int_t CheckLoadLibrary(const char* library) {
12 // checks if a library is already loaded, if not loads the library
13
9a3036c4 14 if (strlen(gSystem->GetLibraries(library, "", kFALSE)) > 0)
9b143719 15 return 1;
16
17 return gSystem->Load(library);
18}