]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/loadlibs.C
remoe duplicate QA initialisation and do ESD QA for same detectors as RecPoint QA
[u/mrichter/AliRoot.git] / MUON / loadlibs.C
index 46a400a0b4a0f8aef92e21b2c9987476a79e3367..51fc8656c8429c9e687cad1c62f3a3fb88f9d76e 100644 (file)
@@ -1,29 +1,63 @@
+/**************************************************************************
+ * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ *                                                                        *
+ * Author: The ALICE Off-line Project.                                    *
+ * Contributors are mentioned in the code where appropriate.              *
+ *                                                                        *
+ * Permission to use, copy, modify and distribute this software and its   *
+ * documentation strictly for non-commercial purposes is hereby granted   *
+ * without fee, provided that the above copyright notice appears in all   *
+ * copies and that both the copyright notice and this permission notice   *
+ * appear in the supporting documentation. The authors make no claims     *
+ * about the suitability of this software for any purpose. It is          *
+ * provided "as is" without express or implied warranty.                  *
+ **************************************************************************/
+
+/* $Id$ */
+
+/// \ingroup macros
+/// \file loadlibs.C
+/// \brief Macro which loads the libraries needed for simulation and reconstruction
+/// with MUON configuration macros
+///
+/// \author Christian Finck
+///
+/// New libraries list by Laurent Aphecetche
+
 void loadlibs () 
 {
-  gSystem->Load("libPhysics");
-  gSystem->Load("libmicrocern");
-  gSystem->Load("libpdf");
-  gSystem->Load("libpythia6");
-  gSystem->Load("libEG");
-  gSystem->Load("libGeom");
   gSystem->Load("libVMC");
-  gSystem->Load("libEGPythia6");
+  gSystem->Load("libMinuit");
+  gSystem->Load("libTree");
 
-  gSystem->Load("libRAWData");
+  gSystem->Load("libSTEERBase"); 
   gSystem->Load("libESD");
-  gSystem->Load("libSTEER");
-  gSystem->Load("libEVGEN");
-  gSystem->Load("libFASTSIM");
-  gSystem->Load("libAliPythia6");
-  gSystem->Load("libSTRUCT");
+  gSystem->Load("libAOD");
+  
+  gSystem->Load("libRAWDatarec");
+  gSystem->Load("libCDB");
+  gSystem->Load("libSTEER"); 
+  
+  gSystem->Load("libPhysics");
+  gSystem->Load("libMUONcore");
   gSystem->Load("libMUONmapping");
+  gSystem->Load("libMUONcalib");
   gSystem->Load("libMUONgeometry");
-  gSystem->Load("libMUONbase");
+  gSystem->Load("libMUONtrigger");
+  
+  gSystem->Load("libRAWDatabase");
   gSystem->Load("libMUONraw");
+    
+  gSystem->Load("libMUONbase");
 
-  gSystem->Load("libMUONsim");
-  new AliRun("gAlice","The ALICE Off-line Simulation Framework");
+  gSystem->Load("libMUONshuttle");
 
   gSystem->Load("libMUONrec");
   
+  gSystem->Load("libRAWDatasim");
+  gSystem->Load("libMUONsim");
+  
+  gSystem->Load("libMUONevaluation");
+  
+  gSystem->Load("libMUONgraphics");
 }