d810d0de |
1 | // $Id$ |
2 | // Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007 |
3 | |
4 | /************************************************************************** |
5 | * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. * |
6 | * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for * |
51346b82 |
7 | * full copyright notice. * |
d810d0de |
8 | **************************************************************************/ |
87f60d9e |
9 | |
10 | { |
7279ee15 |
11 | cout<<"Loading HLT libraries..."<<endl; |
12 | gSystem->Load("libHLTbase"); |
13 | gSystem->Load("libAliHLTUtil"); |
14 | gSystem->Load("libHLTinterface"); |
15 | gSystem->Load("libAliHLTMUON"); |
9e78371d |
16 | gSystem->Load("libAliHLTTPC"); |
f1fefc07 |
17 | gSystem->Load("libAliHLTTRD"); |
18 | gSystem->Load("libTRDbase"); |
19 | gSystem->Load("libTRDrec"); |
7279ee15 |
20 | |
87f60d9e |
21 | cout << "Setting include path ..." << endl; |
22 | TString includePath = "-I${ALICE_ROOT}/include "; |
23 | includePath += "-I${ALICE_ROOT}/EVE "; |
1d8ae8b6 |
24 | includePath += "-I${ALICE_ROOT}/EVE/alice-macros "; |
cb4245bb |
25 | includePath += "-I${ALICE_ROOT}/EVE/EveBase "; |
26 | includePath += "-I${ALICE_ROOT}/EVE/EveDet "; |
27 | includePath += "-I${ALICE_ROOT}/EVE/EveHLT "; |
87f60d9e |
28 | includePath += "-I${ALICE_ROOT}/HLT/BASE "; |
29 | includePath += "-I${ALICE_ROOT}/HLT/TPCLib "; |
c5e3aa8e |
30 | includePath += "-I${ALICE_ROOT}/HLT/PHOS "; |
87f60d9e |
31 | includePath += "-I${ALICE_ROOT}/HLT/BASE/HOMER "; |
c5e3aa8e |
32 | includePath += "-I${ALICE_ROOT}/HLT/BASE/util "; |
f1fefc07 |
33 | includePath += "-I${ALICE_ROOT}/HLT/TRD "; |
c5e3aa8e |
34 | includePath += "-I${ALICE_ROOT}/ITS "; |
35 | includePath += "-I${ALICE_ROOT}/PHOS "; |
87f60d9e |
36 | includePath += "-I${ALICE_ROOT}/TPC "; |
f1fefc07 |
37 | includePath += "-I${ALICE_ROOT}/TRD "; |
87f60d9e |
38 | includePath += "-I${ALICE_ROOT}/RAW "; |
46eadbb4 |
39 | includePath += "-I${ALICE_ROOT}/MUON "; |
40 | includePath += "-I${ALICE_ROOT}/MUON/mapping "; |
7279ee15 |
41 | includePath += "-I${ALICE_ROOT}/HLT/MUON "; |
cfa641b1 |
42 | includePath += "-I${ALICE_ROOT}/HLT/TPCLib/tracking-ca "; |
43 | includePath += "-I${ALICE_ROOT}/PWG0"; |
44 | |
87f60d9e |
45 | gSystem->SetIncludePath(includePath.Data()); |
46 | } |