]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
- libRAWData moved after libSTEER as it depends on it
authorivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 23 May 2006 13:36:33 +0000 (13:36 +0000)
committerivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 23 May 2006 13:36:33 +0000 (13:36 +0000)
- Added copyright, CVS id, description

MUON/loadlibs.C

index 46a400a0b4a0f8aef92e21b2c9987476a79e3367..7bbb9ef1f304cfba6ec89b49ace28a8204574c42 100644 (file)
@@ -1,3 +1,24 @@
+/**************************************************************************
+ * 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$ */
+
+// Macro which loads the libraries needed for simulation and reconstruction
+// with MUON configuration macros
+// Christian Finck
+
 void loadlibs () 
 {
   gSystem->Load("libPhysics");
@@ -9,9 +30,9 @@ void loadlibs ()
   gSystem->Load("libVMC");
   gSystem->Load("libEGPythia6");
 
-  gSystem->Load("libRAWData");
   gSystem->Load("libESD");
   gSystem->Load("libSTEER");
+  gSystem->Load("libRAWData");
   gSystem->Load("libEVGEN");
   gSystem->Load("libFASTSIM");
   gSystem->Load("libAliPythia6");
@@ -25,5 +46,4 @@ void loadlibs ()
   new AliRun("gAlice","The ALICE Off-line Simulation Framework");
 
   gSystem->Load("libMUONrec");
-  
 }