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