source: fact/tools/pyscripts/pyfact/makelibs.C@ 17689

Last change on this file since 17689 was 17686, checked in by dneise, 10 years ago
towards using only C++ Header files from Mars/mcore
  • Property svn:executable set to *
File size: 1.0 KB
Line 
1{
2 TString hostname = gSystem->HostName();
3 if (hostname.Contains("isdc"))
4 {
5 gSystem->Load("/usr/lib64/libz.so");
6 }
7 // a bit of sugar for myself ... feel free to add your personal settings here:-)
8 else if (hostname.Contains("neiseLenovo"))
9 {
10 gSystem->Load("/usr/lib/libz.so");
11 }
12 else if (hostname.Contains("factcontrol"))
13 {
14 gSystem->Load("/usr/lib/libz.so");
15 }
16 else if (hostname.Contains("grolsch"))
17 {
18 gSystem->Load("/usr/lib/i386-linux-gnu/libz.so");
19 }
20 else if (hostname.Contains("max-K50AB"))
21 {
22 gSystem->Load("/usr/lib/x86_64-linux-gnu/libz.so");
23 }
24 else if (hostname.Contains("watz"))
25 {
26 gSystem->Load("/usr/lib/x86_64-linux-gnu/libz.so");
27 }
28 gROOT->ProcessLine(".L extern_Mars_mcore/izstream.h+O");
29 gROOT->ProcessLine(".L fits.h+O");
30 gROOT->ProcessLine(".L extern_Mars_mcore/zfits.h+O");
31 gROOT->ProcessLine(".L extern_Mars_mcore/factfits.h+O");
32 gROOT->ProcessLine(".L calfactfits.h+O");
33}
Note: See TracBrowser for help on using the repository browser.