]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TTherminator/PROOF-INF.TTherminator/SETUP.C
Changes for #89427: Porting modification for material budget issues to the Release...
[u/mrichter/AliRoot.git] / TTherminator / PROOF-INF.TTherminator / SETUP.C
CommitLineData
2e967919 1void SETUP() {
2 CheckLoadLibrary("libTTherminator");
3
4 // Set the include paths
5 gROOT->ProcessLine(".include TTherminator");
6
7 // Set our location, so that other packages can find us
8 gSystem->Setenv("TTherminator_INCLUDE", "TTherminator");
9}
10
11Int_t CheckLoadLibrary(const char* library) {
12 // checks if a library is already loaded, if not loads the library
13
14 if (strlen(gSystem->GetLibraries(Form("%s.so", library), "", kFALSE)) > 0)
15 return 1;
16
17 return gSystem->Load(library);
18}