Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 5972)
+++ trunk/MagicSoft/Mars/Changelog	(revision 5973)
@@ -53,4 +53,6 @@
      - removed old obsolete unsused Significance functions
      - implemented ReadEnv member function
+     - set false source binning only if BinningFalseSource is not default
+     - check parlist for BinningAlpha
 
    * mjobs/MJCalibrateSignal.cc, mjobs/MJCalibration.cc, 
@@ -61,4 +63,18 @@
    * mjobs/MJob.h:
      - added some Getter
+
+   * mhbase/MBinning.[h,cc].
+     - added nen member functions
+       + SetEdgesRaw
+       + ReadEnv
+       + Print
+
+   * mhflux/MAlphaFitter.[h,cc]:
+     - added new member function ReadEnv
+
+   * mhflux/MHAlpha.cc:
+     - fixed a problem when fitting without off-data
+
+
 
  2005/01/24 Markus Gaug
Index: trunk/MagicSoft/Mars/mhflux/MHAlpha.cc
===================================================================
--- trunk/MagicSoft/Mars/mhflux/MHAlpha.cc	(revision 5972)
+++ trunk/MagicSoft/Mars/mhflux/MHAlpha.cc	(revision 5973)
@@ -569,15 +569,12 @@
             // Check whether we are dealing with on-off analysis
             TH1D *hoff = (TH1D*)gPad->FindObject("ProjAlphaOff");
-            if (hoff)
-            {
-                // Do not store the 'final' result in fFit
-                MAlphaFitter fit(fFit);
-
-                // BE CARFEULL: This is a really weird workaround!
-                const Double_t alpha = hoff->GetMaximum();
-                fit.Fit(*h0, hoff, alpha<0 ? 1: alpha, kTRUE);
-
-                fit.PaintResult();
-            }
+
+            // BE CARFEULL: This is a really weird workaround!
+            const Double_t scale = !hoff || hoff->GetMaximum()<0 ? 1 : hoff->GetMaximum();
+
+            // Do not store the 'final' result in fFit
+            MAlphaFitter fit(fFit);
+            fit.Fit(*h0, hoff, scale, kTRUE);
+            fit.PaintResult();
         }
 
