]>
Commit | Line | Data |
---|---|---|
fe4da5cc | 1 | void loadlibs () |
2 | { | |
68733fc9 | 3 | // Macro which loads the libraries needed for simulation and reconstruction |
4 | // Possible usage: In a Root session (no AliRoot) one does | |
5 | // root [0] .x loadlibs.C | |
6 | // root [1] gAlice = new AliRun("gAlice","test") | |
7 | // root [2] AliSimulation sim | |
8 | // root [3] sim.Run() | |
9 | // root [4] AliReconstruction rec | |
10 | // root [5] rec.Run() | |
11 | ||
4f322bd0 | 12 | gSystem->Load("libPhysics"); |
81106e56 | 13 | gSystem->Load("libMinuit"); |
4f322bd0 | 14 | |
81106e56 | 15 | // Uncomment the following line for macosx |
4f322bd0 | 16 | // Waiting for a better solution |
0be86b9e | 17 | // gSystem->Load("libg2c_sh"); |
4f322bd0 | 18 | gSystem->Load("libmicrocern"); |
19 | gSystem->Load("libpdf"); | |
20 | gSystem->Load("libpythia6"); | |
21 | ||
22 | gSystem->Load("libEG"); | |
43710502 | 23 | gSystem->Load("libGeom"); |
24 | gSystem->Load("libVMC"); | |
b9d0a01d | 25 | |
4f322bd0 | 26 | gSystem->Load("libEGPythia6"); |
91dce2f0 | 27 | |
28 | gSystem->Load("libRAW"); | |
29 | ||
ff468ad2 | 30 | gSystem->Load("libESD"); |
4a48da4b | 31 | gSystem->Load("libSTEER"); |
6a2ee3c9 | 32 | gSystem->Load("libEVGEN"); |
81106e56 | 33 | gSystem->Load("libFASTSIM"); |
30792f17 | 34 | gSystem->Load("libAliPythia6"); |
68733fc9 | 35 | |
36 | gSystem->Load("libhijing"); | |
37 | gSystem->Load("libTHijing");// AliGenHijingEventHeader needed by libZDCsim.so | |
38 | ||
4f322bd0 | 39 | gSystem->Load("libSTRUCT"); |
540f6d45 | 40 | gSystem->Load("libPHOS"); |
dd17c92c | 41 | gSystem->Load("libMUONmapping"); |
68733fc9 | 42 | gSystem->Load("libMUONgeometry"); |
43 | gSystem->Load("libMUONbase"); | |
44 | gSystem->Load("libMUONsim"); | |
45 | gSystem->Load("libMUONrec"); | |
caf82a57 | 46 | gSystem->Load("libFMDbase"); |
47 | gSystem->Load("libFMDsim"); | |
48 | gSystem->Load("libFMDrec"); | |
8608b5c1 | 49 | gSystem->Load("libPMDbase"); |
50 | gSystem->Load("libPMDsim"); | |
51 | gSystem->Load("libPMDrec"); | |
68733fc9 | 52 | gSystem->Load("libRICHbase"); |
53 | gSystem->Load("libRICHsim"); | |
54 | gSystem->Load("libRICHrec"); | |
caf82a57 | 55 | gSystem->Load("libSTARTbase"); |
56 | gSystem->Load("libSTARTsim"); | |
57 | gSystem->Load("libSTARTrec"); | |
68733fc9 | 58 | gSystem->Load("libZDCbase"); |
59 | gSystem->Load("libZDCsim"); | |
60 | gSystem->Load("libZDCrec"); | |
4f322bd0 | 61 | gSystem->Load("libCRT"); |
caf82a57 | 62 | gSystem->Load("libVZERObase"); |
63 | gSystem->Load("libVZEROsim"); | |
64 | gSystem->Load("libVZEROrec"); | |
5c51ce94 | 65 | gSystem->Load("libEMCAL"); |
4f322bd0 | 66 | gSystem->Load("libCONTAINERS"); |
67 | ||
68 | // The following lines have to be commented on Darwin | |
69 | // for the moment due to cross dependencies | |
81106e56 | 70 | gSystem->Load("libTPCbase"); |
71 | gSystem->Load("libTPCrec"); | |
72 | gSystem->Load("libTPCsim"); | |
73 | gSystem->Load("libTPCfast"); | |
2ee21e83 | 74 | gSystem->Load("libITS"); |
81106e56 | 75 | gSystem->Load("libTRDbase"); |
76 | gSystem->Load("libTRDsim"); | |
77 | gSystem->Load("libTRDrec"); | |
78 | gSystem->Load("libTRDfast"); | |
68733fc9 | 79 | gSystem->Load("libTOFbase"); |
80 | gSystem->Load("libTOFsim"); | |
81 | gSystem->Load("libTOFrec"); | |
82 | ||
83 | gSystem->Load("libAliL3Src"); | |
84 | gSystem->Load("libAliL3Misc"); | |
85 | gSystem->Load("libAliL3Comp"); | |
86 | gSystem->Load("libThread"); | |
87 | gSystem->Load("libAliL3Hough"); | |
88 | gSystem->Load("libAliL3ITS"); | |
fe4da5cc | 89 | } |