Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 8931)
+++ trunk/MagicSoft/Mars/Changelog	(revision 8932)
@@ -22,10 +22,21 @@
  2008/06/09 Thomas Bretz
 
-  * mbase/MArgs.[h,cc]:
-    - for convinience store the full command line as Title
-    - replaced *fArgv by fArgv
-
-  * mbase/MObjLookup.cc:
-    - replaced C-style cast by reinterpret_cast
+   * mbase/MArgs.[h,cc]:
+     - for convinience store the full command line as Title
+     - replaced *fArgv by fArgv
+
+   * mbase/MObjLookup.cc:
+     - replaced C-style cast by reinterpret_cast
+
+   * datacenter/macros/fillcalib.C, datacenter/macros/fillstar.C:
+     - removed usage of Nint (obsolete... Form does rounding)
+
+   * datacenter/macros/fillsignal.C:
+     - removed usage of Nint (obsolete... Form does rounding)
+     - added new columns to get trigger rates from TrigPat tab
+     - fixed some small bugs lately introduced
+
+   * mhflux/MHEffectiveOnTime.cc:
+     - fixed a typo in ReInit
 
 
Index: trunk/MagicSoft/Mars/NEWS
===================================================================
--- trunk/MagicSoft/Mars/NEWS	(revision 8931)
+++ trunk/MagicSoft/Mars/NEWS	(revision 8932)
@@ -2,4 +2,14 @@
 
 == <cvs> ==
+
+ ;Database
+
+   * introduced average temperature and wind speed from star-files
+
+   * introduced the ratio of accepted calibration events in the
+     calibration run
+
+   * introduced the average rates of the different trigger pattern,
+     e.g. the rate of pedestal and calibration events, from the signal-file
 
  ;general
@@ -99,4 +109,11 @@
     * Added a new command line option --dev-null to suppress output of
       I-files (this is useful for test cases)
+
+    * Tab "Rate" added showing the distribution of the trigger pattern
+      (should only be Trig (Lvl1/Lvl2) and Sum (Sum only)) as found in
+      the Y-files (normalized with the run length)
+
+    * The effective on-time calculation doesn't use events with only
+      sum-trigger anymore
 
  ;ganymed/sponde
Index: trunk/MagicSoft/Mars/mhflux/MHEffectiveOnTime.cc
===================================================================
--- trunk/MagicSoft/Mars/mhflux/MHEffectiveOnTime.cc	(revision 8931)
+++ trunk/MagicSoft/Mars/mhflux/MHEffectiveOnTime.cc	(revision 8932)
@@ -484,5 +484,5 @@
 {
     MRawRunHeader *header = (MRawRunHeader*)pList->FindObject("MRawRunHeader");
-    if (header)
+    if (!header)
     {
         *fLog << err << "MRawRunHeader not found... aborting." << endl;
