Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 7532)
+++ trunk/MagicSoft/Mars/Changelog	(revision 7533)
@@ -24,4 +24,7 @@
        standard Disp-parametrization
 
+   * mhflux/MHEffectiveOnTime.[h,cc]:
+     - added showing the axis range of the time evolution histogram
+
 
 
Index: trunk/MagicSoft/Mars/NEWS
===================================================================
--- trunk/MagicSoft/Mars/NEWS	(revision 7532)
+++ trunk/MagicSoft/Mars/NEWS	(revision 7533)
@@ -5,4 +5,8 @@
    - macros: fixed a typo optimwoble.C (SetThetaCut instead SetAlphaCut)
      and added the standard Disp-parametrization
+
+   - star: The time-evolution shown in the effective on-time plot now displays
+     the axis range (if there are no holes it should be similar to the
+     effective on-time)
 
    - showplot: path inflation for ganymed files was broken
Index: trunk/MagicSoft/Mars/macros/optim/optimwobble.C
===================================================================
--- trunk/MagicSoft/Mars/macros/optim/optimwobble.C	(revision 7532)
+++ trunk/MagicSoft/Mars/macros/optim/optimwobble.C	(revision 7533)
@@ -6,7 +6,8 @@
 
     // ------------------- Xi -----------------------
-    opt.SetParameter(0, 0.6);
-    opt.FixParameter(6, 0.137);
-
+    opt.FixParameter(0, 1.221);
+    opt.FixParameter(6, 13.425);
+    opt.FixParameter(7, 1.04343);
+                  
     // --------------- Theta Sq ---------------------
     opt.SetParameter(1, 0.23);
Index: trunk/MagicSoft/Mars/mhflux/MHEffectiveOnTime.cc
===================================================================
--- trunk/MagicSoft/Mars/mhflux/MHEffectiveOnTime.cc	(revision 7532)
+++ trunk/MagicSoft/Mars/mhflux/MHEffectiveOnTime.cc	(revision 7533)
@@ -759,10 +759,13 @@
 //  Paint the integral and the error on top of the histogram
 //
-void MHEffectiveOnTime::PaintText(Double_t val, Double_t error) const
-{
-    TLatex text(0.45, 0.94, Form("T_{eff} = %.1fs \\pm %.1fs", val, error));
+void MHEffectiveOnTime::PaintText(Double_t val, Double_t error, Double_range) const
+{
+    TLatex text;
     text.SetBit(TLatex::kTextNDC);
     text.SetTextSize(0.04);
-    text.Paint();
+    text.PaintLatex(0.45, 0.94, Form("T_{eff} = %.1fs \\pm %.1fs", val, error));
+
+    if (range>=0)
+        text.PaintLatex(0.66, 0.94, Form("T_{axe} = %.1fs", range));
 }
 
@@ -891,4 +894,6 @@
 
     h=0;
+
+    Double_t range=-1;
     if (o==(TString)"theta")
     {
@@ -900,4 +905,5 @@
         h = &fHTimeEffOn;
         UpdateRightAxis(fHTimeLambda);
+        range = h->GetXaxis()->GetXmax()->h->GetXaxis()->GetXmin();
     }
 
@@ -909,5 +915,5 @@
         error += h->GetBinError(i);
 
-    PaintText(h->Integral(), error);
+    PaintText(h->Integral(), error, range);
 }
 
Index: trunk/MagicSoft/Mars/mhflux/MHEffectiveOnTime.h
===================================================================
--- trunk/MagicSoft/Mars/mhflux/MHEffectiveOnTime.h	(revision 7532)
+++ trunk/MagicSoft/Mars/mhflux/MHEffectiveOnTime.h	(revision 7533)
@@ -57,5 +57,5 @@
     void FitTimeBin();
     void PaintProb(TH1 &h) const;
-    void PaintText(Double_t val, Double_t error) const;
+    void PaintText(Double_t val, Double_t error, Double_t range=-1) const;
     void PaintText(Double_t *res) const;
     void DrawRightAxis(const char *title);
