Index: trunk/FACT++/gui/FactGui.h
===================================================================
--- trunk/FACT++/gui/FactGui.h	(revision 11239)
+++ trunk/FACT++/gui/FactGui.h	(revision 11240)
@@ -2534,5 +2534,5 @@
 
 #ifdef HAVE_ROOT
-    void DrawTimeFrame(const char *ytitle)
+    TH1 *DrawTimeFrame(const char *ytitle)
     {
         const double tm = Time().RootTime();
@@ -2553,6 +2553,9 @@
 	h.GetYaxis()->SetLabelSize(0.025);
         h.GetYaxis()->SetTitleOffset(1.2);
-//        h.GetYaxis()->SetTitleSize(1.2);
-        h.DrawCopy()->SetDirectory(0);
+	//        h.GetYaxis()->SetTitleSize(1.2);
+
+	TH1 *cpy = h.DrawCopy();
+	cpy->SetDirectory(0);
+        return cpy;
     }
 #endif
@@ -2766,5 +2769,6 @@
         c->cd();
 
-        DrawTimeFrame("Trigger rate [Hz]");
+	TH1 *hf = DrawTimeFrame("Trigger rate [Hz]");
+        hf->GetYaxis()->SetRangeUser(0, 1010);
 
         fTriggerCounter0 = -1;
