]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGJE/macros/loadlibPWGJE.C
Merge branch 'master' of https://git.cern.ch/reps/AliRoot
[u/mrichter/AliRoot.git] / PWGJE / macros / loadlibPWGJE.C
1 void loadlibPWGJE()
2 {
3   // this macro should load PWGJE with all dependencies from ROOT
4   // (it should not require to be run with AliRoot)
5   //
6   // please use the macro before a commit to check
7   // that the PWGJE libraries not only compile but can also be loaded
8   // with the known dependencies
9   //
10   // if you have to add dependendencies make sure that people get informed
11   // (especially the operators of trains should know what to change)
12
13   gSystem->Load("libCore");
14   gSystem->Load("libPhysics");
15   gSystem->Load("libMinuit");
16
17   gSystem->Load("libVMC");
18
19   gSystem->Load("libNet");
20   gSystem->Load("libTree");
21
22   gSystem->Load("libSTEERBase");
23   gSystem->Load("libESD");
24   gSystem->Load("libAOD");
25   gSystem->Load("libANALYSIS");
26   gSystem->Load("libANALYSISalice");
27
28   gSystem->Load("libCGAL");
29   gSystem->Load("libfastjet");
30
31   gSystem->Load("libPWGJE");
32   gSystem->Load("libPWGJEStrangenessInJets");
33
34   //
35   // EMCAL jet framework
36   //  if you only need the EMCAL jet framework, use $ALICE_ROOT/PWGJE/EMCALJetTasks/macros/loadlibPWGJEEMCAL.C
37   gSystem->Load("libTENDER");
38   gSystem->Load("libCORRFW");
39   gSystem->Load("libPWGTools");
40   gSystem->Load("libCDB");
41   gSystem->Load("libProof");
42   gSystem->Load("libsiscone");
43   gSystem->Load("libsiscone_spherical");
44   gSystem->Load("libfastjetplugins");
45   gSystem->Load("libfastjettools");
46   gSystem->Load("libfastjetcontribfragile");
47   gSystem->Load("libRAWDatabase");
48   gSystem->Load("libSTEER");
49   gSystem->Load("libPWGEMCAL");
50   gSystem->Load("libPWGJEEMCALJetTasks");
51 }