Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 5575)
+++ trunk/MagicSoft/Mars/Changelog	(revision 5576)
@@ -26,5 +26,7 @@
     - fixed a bug in Reset(), fSaturation was not resetted before. 
       Affects only intensity calibraion.
-
+  * mhcalib/MHGausEvents.cc
+    - fixed bug in Reset(), histogram ranges were not reset before.
+      Affects only intensity calibraion.
 
  2004/12/09: Thomas Bretz
Index: trunk/MagicSoft/Mars/mhcalib/MHGausEvents.cc
===================================================================
--- trunk/MagicSoft/Mars/mhcalib/MHGausEvents.cc	(revision 5575)
+++ trunk/MagicSoft/Mars/mhcalib/MHGausEvents.cc	(revision 5576)
@@ -150,8 +150,5 @@
   fHGausHist.UseCurrentStyle();
   fHGausHist.SetDirectory(NULL);
-  //  TAxis *xaxe = fHGausHist.GetXaxis();
-  //  xaxe->Set(100,0.,100.);
   TAxis *yaxe = fHGausHist.GetYaxis();
-  //  yaxe->SetDefaults();
   yaxe->CenterTitle();
 }
@@ -191,5 +188,5 @@
   if (fFExpFit)
       delete fFExpFit;
-  
+
   // delete histograms
   if (fHPowerProbability)
@@ -206,6 +203,4 @@
   if (fGraphPowerSpectrum)
     delete fGraphPowerSpectrum;
-
-
 }
       
@@ -927,5 +922,5 @@
   fHGausHist.Reset();
   fEvents.Set(0);
-
+  InitBins();
 }
 
