Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 8025)
+++ trunk/MagicSoft/Mars/Changelog	(revision 8026)
@@ -54,4 +54,8 @@
      - fixed a problem which could cause the change in the DrawOption
        of the Center-hist to raise a seg-fault.
+
+   * mbase/MMath.cc, mbase/MAGIC.cc:
+     - added the NamespaceImp macro to allow creation of the documentation
+       by THtml (according to the source code of TMath)
 
 
Index: trunk/MagicSoft/Mars/mbase/MAGIC.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MAGIC.cc	(revision 8025)
+++ trunk/MagicSoft/Mars/mbase/MAGIC.cc	(revision 8026)
@@ -32,4 +32,6 @@
 #include <iostream>
 
+NamespaceImp(MARS);
+
 using namespace std;
 
Index: trunk/MagicSoft/Mars/mbase/MMath.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MMath.cc	(revision 8025)
+++ trunk/MagicSoft/Mars/mbase/MMath.cc	(revision 8026)
@@ -44,4 +44,6 @@
 #endif
 
+NamespaceImp(MMath);
+
 // --------------------------------------------------------------------------
 //
@@ -501,4 +503,9 @@
 }
 
+// --------------------------------------------------------------------------
+//
+// Solves: x^2 + ax + b = 0;
+// Return number of solutions returned as x1, x2
+//
 Int_t MMath::SolvePol2(Double_t a, Double_t b, Double_t &x1, Double_t &x2)
 {
@@ -534,5 +541,5 @@
 //
 // Solves: x^3 + ax^2 + bx + c = 0;
-// Return number of the real solutions returns as z1, z2, z3
+// Return number of the real solutions, returned as z1, z2, z3
 //
 // Algorithm adapted from http://home.att.net/~srschmitt/cubizen.heml
