Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 5059)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 5060)
@@ -24,4 +24,7 @@
    * mimage/MHillasCalc.[h,cc]
      - removed obsolete PrintSkipped
+
+   * mhbase/MH.cc, mfilter/MFDeltaT.cc:
+     - Form %5.1 when printing statistics
 
 
Index: /trunk/MagicSoft/Mars/mfilter/MFDeltaT.cc
===================================================================
--- /trunk/MagicSoft/Mars/mfilter/MFDeltaT.cc	(revision 5059)
+++ /trunk/MagicSoft/Mars/mfilter/MFDeltaT.cc	(revision 5060)
@@ -78,5 +78,5 @@
     fNameTime   = time;
 
-    fErrors.Set(4);
+    fErrors.Set(5);
 
     AddToBranchList(Form("%s.*", (const char*)fNameTime));
@@ -130,4 +130,6 @@
         if (dt>fUpperLimit)
             i=3;
+        if (TMath::Floor(fTime->GetMjd())==fTime->GetMjd())
+            i=4;
     }
 
@@ -151,6 +153,9 @@
     PrintSkipped(fErrors[1], "Delta-T  < 0");
     PrintSkipped(fErrors[2], "Delta-T == 0");
-    PrintSkipped(fErrors[3], Form("Delta-T > %.2fs", fUpperLimit));
-    *fLog << " " << (int)fErrors[0] << " (" << (int)(100.*fErrors[0]/GetNumExecutions()) << "%) Evts fullfilled filter condition!" << endl;
+    PrintSkipped(fErrors[3], Form("Delta-T  > %.2fs", fUpperLimit));
+    PrintSkipped(fErrors[4], "Delta-T == floor(Delta-T)");
+    *fLog << " " << (int)fErrors[0] << " (";
+    *fLog << Form("5.1f", 100.*fErrors[0]/GetNumExecutions());
+    *fLog << "%) Evts fullfilled filter condition!" << endl;
     *fLog << endl;
 
Index: /trunk/MagicSoft/Mars/mhbase/MH.cc
===================================================================
--- /trunk/MagicSoft/Mars/mhbase/MH.cc	(revision 5059)
+++ /trunk/MagicSoft/Mars/mhbase/MH.cc	(revision 5060)
@@ -1291,5 +1291,5 @@
 {
     *fLog << " " << setw(7) << n << " (";
-    *fLog << setw(3) << (int)(100.*n/GetNumExecutions());
+    *fLog << Form("%5.1f", 100.*n/GetNumExecutions());
     *fLog << "%) Evts skipped: " << str << endl;
 }
Index: /trunk/MagicSoft/Mars/mimage/MHillasCalc.cc
===================================================================
--- /trunk/MagicSoft/Mars/mimage/MHillasCalc.cc	(revision 5059)
+++ /trunk/MagicSoft/Mars/mimage/MHillasCalc.cc	(revision 5060)
@@ -352,5 +352,4 @@
     *fLog << inf << endl;
     *fLog << GetDescriptor() << " execution statistics:" << endl;
-    *fLog << dec << setfill(' ');
     if (TestBit(kCalcHillas))
     {
@@ -365,5 +364,5 @@
         PrintSkipped(fErrors[6], "Arg2==0");
     }
-    *fLog << " " << (int)fErrors[0] << " (" << Form("%.1f", 100.*fErrors[0]/GetNumExecutions()) << "%) Evts survived Hillas calculation!" << endl;
+    *fLog << " " << (int)fErrors[0] << " (" << Form("%5.1f", 100.*fErrors[0]/GetNumExecutions()) << "%) Evts survived Hillas calculation!" << endl;
     *fLog << endl;
 
