Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 6363)
+++ trunk/MagicSoft/Mars/Changelog	(revision 6364)
@@ -71,6 +71,10 @@
 
    * mimage/MHillas.h:
-     - added new Getter GetDeist0 returning the distance to the 
+     - added new Getter GetDist0 returning the distance to the 
        camera center
+
+   * mhflux/MHFalseSource.cc:
+     - the scaling in Paint() was nonsense in case we are looking
+       at on/off-data. Fixed.
 
 
Index: trunk/MagicSoft/Mars/mhflux/MHFalseSource.cc
===================================================================
--- trunk/MagicSoft/Mars/mhflux/MHFalseSource.cc	(revision 6363)
+++ trunk/MagicSoft/Mars/mhflux/MHFalseSource.cc	(revision 6364)
@@ -606,6 +606,6 @@
                 fHistOff->ProjectionZ("AlphaOff_z", maxx, maxx, maxy, maxy);
 
-                const Int_t f = h0->GetXaxis()->FindFixBin(fBgMean-fAlphaCut/2);
-                const Int_t l = h0->GetXaxis()->FindFixBin(fAlphaCut)+f-1;
+                const Int_t f = h0->GetXaxis()->FindFixBin(fBgMean-1.5*fAlphaCut);
+                const Int_t l = h0->GetXaxis()->FindFixBin(fAlphaCut*3)+f-1;
                 h0->Scale(h1->Integral(f, l)/h0->Integral(f, l));
                 //h0->Scale(h1->GetEntries()/h0->GetEntries());
