1 |
mayorov |
1.1 |
{ |
2 |
|
|
|
3 |
|
|
TString inclpath = gSystem->Getenv("PAM_INC"); |
4 |
|
|
inclpath.Prepend(".include "); |
5 |
|
|
gROOT->ProcessLine(inclpath.Data()); |
6 |
|
|
inclpath.Append("/yoda/"); |
7 |
|
|
gROOT->ProcessLine(inclpath.Data()); |
8 |
|
|
|
9 |
|
|
puts("\nLoading libraries..."); |
10 |
|
|
|
11 |
|
|
|
12 |
|
|
puts("libyoda.so"); |
13 |
|
|
gSystem->Load("libyoda.so"); |
14 |
|
|
puts("libDarthVader.so"); |
15 |
|
|
gSystem->Load("libDarthVader.so"); |
16 |
|
|
puts("libPamLevel2.so"); |
17 |
|
|
gSystem->Load("libPamLevel2.so"); |
18 |
|
|
puts("libCaloNuclei.so"); |
19 |
|
|
gSystem->Load("libCaloNuclei.so"); |
20 |
|
|
|
21 |
|
|
|
22 |
|
|
puts("test libToFdEdx_patch.so"); |
23 |
|
|
gSystem->Load("/gpfs/wizard/flight/analysis/menn/devel/10th/tof/flight/ToFdEdx_patch_tri/lib/Linux/libToFdEdx_patch_v1r00.so"); |
24 |
|
|
} |
25 |
|
|
|