Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 1834)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 1835)
@@ -1,3 +1,11 @@
                                                  -*-*- END OF LINE -*-*-
+
+ 2003/03/19: Robert Wagner
+
+    * mhist/MH3.cc:
+      - changed MH3::New() such that constructor according to Thomas'
+        previous changes is supported
+
+
 
  2003/03/19: Thomas Bretz
Index: /trunk/MagicSoft/Mars/mhist/MH3.cc
===================================================================
--- /trunk/MagicSoft/Mars/mhist/MH3.cc	(revision 1834)
+++ /trunk/MagicSoft/Mars/mhist/MH3.cc	(revision 1835)
@@ -89,5 +89,5 @@
 MH3::MH3(const unsigned int dim)
     : fDimension(dim>3?3:dim), fHist(NULL)
-{
+{  
     switch (fDimension)
     {
@@ -596,5 +596,13 @@
 MParContainer *MH3::New() const
 {
+  cout << "1" <<endl;
     MH3 *h = NULL;
+  cout << "1a" <<endl;
+
+  if (fData[0] == NULL) 
+    {
+      h=new MH3(fDimension);
+    }
+  else
     switch (fDimension)
     {
