]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - macros/mkhtml.C
Restoring the generation of HTML documentation (Natalia) + related changes (PH)
[u/mrichter/AliRoot.git] / macros / mkhtml.C
index b979ff74cd4e95555f3529d4381deeb84945ca0f..b3fea66ca3924f3ba9d23ad86e047eef6f67ea89 100644 (file)
@@ -1,3 +1,7 @@
+#include <THtml.h>
+#include <TROOT.h>
+#include <TSystem.h>
+
 void mkhtml (char *macro=0, Int_t force=0) {
 // to run this macro, you must have the correct .rootrc file
 // in your galice directory.
@@ -9,8 +13,6 @@ void mkhtml (char *macro=0, Int_t force=0) {
   // loadlibs();
   THtml html;
   html.SetProductName("AliRoot");
-  TStopwatch timer;
-  timer.Start();
   if(macro) {
     gROOT->LoadMacro(macro);
     html.Convert(macro,"Example Macro");
@@ -19,11 +21,11 @@ void mkhtml (char *macro=0, Int_t force=0) {
     gSystem->Load("libEGPythia6.so");   // TGenerator interface
     gSystem->Load("libpythia6.so");     // Pythia
     gSystem->Load("libAliPythia6.so");  // ALICE specific implementations
-    gSystem->Load("libRALICE.so");
 
     gSystem->Load("libANALYSIS.so");
     gSystem->Load("libANALYSISalice.so");
-    gSystem->Load("libANALYSISRL.so");
+    gSystem->Load("libANALYSIScalib.so");
+    gSystem->Load("libEventMixing.so");
 
     gSystem->Load("libPWG0base.so");
     gSystem->Load("libPWG0dep.so");
@@ -33,7 +35,6 @@ void mkhtml (char *macro=0, Int_t force=0) {
     gSystem->Load("libPWG1.so");
 
     gSystem->Load("libCORRFW.so");
-    gSystem->Load("libPWG2.so");
     gSystem->Load("libPWG2AOD.so");
     gSystem->Load("libPWG2ebye.so");
     gSystem->Load("libPWG2evchar.so");
@@ -51,9 +52,7 @@ void mkhtml (char *macro=0, Int_t force=0) {
     gSystem->Load("libPWG3hfe.so");
     gSystem->Load("libPWG3muondep.so");
     gSystem->Load("libPWG3muon.so");
-    gSystem->Load("libPWG3.so");
     gSystem->Load("libPWG3vertexingHF.so");
-    gSystem->Load("libPWG3vertexingOld.so");
 
     gSystem->Load("libJETAN.so");
     gSystem->Load("libPWG4CaloCalib.so");
@@ -63,8 +62,12 @@ void mkhtml (char *macro=0, Int_t force=0) {
     gSystem->Load("libPWG4PartCorrBase.so");
     gSystem->Load("libPWG4PartCorrDep.so");
 
+    // EVE
+    gSystem->Load("libEve.so");
+    gSystem->Load("libEvebase.so");
+    gSystem->Load("libEveDet.so");
+    gSystem->Load("libEveHLT.so");
+
     html.MakeAll(force,"[A-Z]*");
   }
-  timer.Stop();
-  timer.Print();
 }