]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - macros/mkhtml.C
removing commented lines and header from tchain
[u/mrichter/AliRoot.git] / macros / mkhtml.C
index f28a67de393c54c8c1c520eabbe9a43e7b0b6a0f..87014bba5cf61f80951c87bc52b23159798e4366 100644 (file)
@@ -8,10 +8,15 @@ void mkhtml (char *macro=0, Int_t force=0) {
   // gROOT->LoadMacro("loadlibs.C");
   // loadlibs();
   THtml html;
+  TStopwatch timer;
+  timer.Start();
   if(macro) {
     gROOT->LoadMacro(macro);
     html.Convert(macro,"Example Macro");
   } else {
-    html.MakeAll(force);
+    gSystem->Load("$(ALICE_ROOT)/lib/tgt_$(ALICE_TARGET)/libRALICE");
+    html.MakeAll(force,"[A-Z]*");
   }
+  timer.Stop();
+  timer.Print();
 }