]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG/PROOF-INF.PWGmuon/SETUP.C
composition of the Alluminum alloy that constitutes the ITS-TPC support rings updated...
[u/mrichter/AliRoot.git] / PWG / PROOF-INF.PWGmuon / SETUP.C
CommitLineData
e8fd9be7 1void SETUP()
2{
3 // Load some ROOT libraries
4 CheckLoadLibrary("libTree");
5 CheckLoadLibrary("libGeom");
6 CheckLoadLibrary("libVMC");
7
8 // Load the ESD library
9 CheckLoadLibrary("libANALYSIS");
10 CheckLoadLibrary("libSTEERBase");
11 CheckLoadLibrary("libESD");
12 CheckLoadLibrary("libAOD");
13 CheckLoadLibrary("libANALYSISalice");
40a0a69c 14 CheckLoadLibrary("libPWGmuon");
e8fd9be7 15
16
17 // Set the include paths
40a0a69c 18 gROOT->ProcessLine(".include PWGmuon/muon");
e8fd9be7 19
20 // Set our location, so that other packages can find us
40a0a69c 21 gSystem->Setenv("PWGmuon_INCLUDE", "PWGmuon/muon");
e8fd9be7 22}
23
24Int_t CheckLoadLibrary(const char* library)
25{
26 // checks if a library is already loaded, if not loads the library
27
28 if (strlen(gSystem->GetLibraries(Form("%s.so", library), "", kFALSE)) > 0)
29 return 1;
30
31 return gSystem->Load(library);
32}