Index: trunk/MagicSoft/Cosy/macros/dohtml.C
===================================================================
--- trunk/MagicSoft/Cosy/macros/dohtml.C	(revision 8827)
+++ trunk/MagicSoft/Cosy/macros/dohtml.C	(revision 8837)
@@ -16,11 +16,24 @@
 !
 !
-!   Author(s): Thomas Bretz  12/2000 (tbretz@uni-sw.gwdg.de)
+!   Author(s): Thomas Bretz  12/2000 <mailto:tbretz@astro.uni-wuerzburg.de>
 !
-!   Copyright: MAGIC Software Development, 2000-2001
+!   Copyright: MAGIC Software Development, 2000-2008
 !
 !
 \* ======================================================================== */
 
+///////////////////////////////////////////////////////////////////////////
+//
+// dohtml.C
+// ========
+//
+// This is a service macro used to create the html-documentation from
+// source code (THtml)
+//
+// Add here all directories in which files are stored from which the
+// documentation should be created an add all macros which should be
+// converted to HTML.
+//
+///////////////////////////////////////////////////////////////////////////
 
 void dohtml()
@@ -31,24 +44,34 @@
 
     //
+    // Do not print 'Info' messages from the root system such like
+    // TCanvas::Print
+    //
+    gErrorIgnoreLevel=kWarning;
+
+    //
     //   create the html document class
     //
     THtml html;
 
+    TString sourcedir;
+    sourcedir += "base:";
+    sourcedir += "candrv:";
+    sourcedir += "caos:";
+    sourcedir += "catalog:";
+    sourcedir += "devdrv:";
+    sourcedir += "gui:";
+    sourcedir += "main:";
+//    sourcedir += "mvideo:";
+    sourcedir += "tcpip:";
+    sourcedir += "tpoint:";
+    sourcedir += "videodev:";
+    sourcedir += ".:";
+
+    html.SetSourceDir(sourcedir);
     html.SetOutputDir("htmldoc");
-    html.SetSourceDir("candrv");
 
     html.MakeAll(kTRUE);
-/*
+
     html.SetSourceDir("macros");
-    html.Convert("merpp.C",       "MARS - Merging and Preprocessing");
-    html.Convert("readraw.C",     "MARS - How To Read A Raw");
-    html.Convert("rootlogon.C",   "MARS - rootlogon.C");
-    html.Convert("readCT1.C",     "MARS - Read and display CT1 Events");
-    html.Convert("readMagic.C",   "MARS - Read and display Magic Events");
-    html.Convert("CT1Hillas.C",   "MARS - Calculate CT1 Hillas");
-    html.Convert("MagicHillas.C", "MARS - Calculate Magic Hillas");
-    html.Convert("collarea.C",    "MARS - Calculate Collection Area from a MC root file");
-    html.Convert("threshold.C",   "MARS - Calculate Energy Threshold from a MC root file");
-    html.Convert("trigrate.C",    "MARS - Calculate Trigger Rate from a MC root file");
-    */
+//    html.Convert("merpp.C",                     "MARS - Merging and Preprocessing");
 }
