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