]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Add macro to load EMCALJet libs
authormvl <marco.van.leeuwen@cern.ch>
Wed, 21 May 2014 11:00:12 +0000 (13:00 +0200)
committermvl <marco.van.leeuwen@cern.ch>
Wed, 21 May 2014 11:01:32 +0000 (13:01 +0200)
PWGJE/EMCALJetTasks/macros/loadlibPWGJEEMCAL.C [new file with mode: 0644]

diff --git a/PWGJE/EMCALJetTasks/macros/loadlibPWGJEEMCAL.C b/PWGJE/EMCALJetTasks/macros/loadlibPWGJEEMCAL.C
new file mode 100644 (file)
index 0000000..c38e0b6
--- /dev/null
@@ -0,0 +1,40 @@
+void loadlibPWGJEEMCAL()
+{
+  // this macro should load PWGJE with all dependencies from ROOT
+  // (it should not require to be run with AliRoot)
+  //
+  // please use the macro before a commit to check
+  // that the PWGJE libraries not only compile but can also be loaded
+  // with the known dependencies
+  //
+  // if you have to add dependendencies make sure that people get informed
+  // (especially the operators of trains should know what to change)
+
+  gSystem->Load("libCore");
+  gSystem->Load("libPhysics");
+  gSystem->Load("libMinuit");
+
+  gSystem->Load("libVMC");
+
+  gSystem->Load("libNet");
+  gSystem->Load("libTree");
+
+  gSystem->Load("libSTEERBase");
+  gSystem->Load("libESD");
+  gSystem->Load("libAOD");
+  gSystem->Load("libANALYSIS");
+  gSystem->Load("libANALYSISalice");
+
+  gSystem->Load("libCDB");
+  gSystem->Load("libTENDER");
+  gSystem->Load("libCORRFW");
+  gSystem->Load("libPWGTools");
+  gSystem->Load("libPWGEMCAL");
+
+  gSystem->Load("libCGAL");
+  gSystem->Load("libfastjet");
+  gSystem->Load("libSISConePlugin");
+  gSystem->Load("libCDFConesPlugin");
+
+  gSystem->Load("libPWGJEEMCALJetTasks");
+}