Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 9177)
+++ trunk/MagicSoft/Mars/Changelog	(revision 9178)
@@ -18,4 +18,18 @@
 
                                                  -*-*- END OF LINE -*-*-
+
+ 2008/11/27 Thomas Bretz
+
+   * mbase/MContinue.[h,cc]:
+     - updated ClassVersion number according to last change
+
+   * mraw/MRawFilesRead.cc:
+     - fixed a bug when errno==0
+
+   * mjobs/MJStar.cc:
+     - in case of sum trigger skip only events with only sum-trigger not
+       all events with sum-trigger for effective on time calculation
+
+
 
  2008/11/24 Daniela Dorner
Index: trunk/MagicSoft/Mars/NEWS
===================================================================
--- trunk/MagicSoft/Mars/NEWS	(revision 9177)
+++ trunk/MagicSoft/Mars/NEWS	(revision 9178)
@@ -70,4 +70,10 @@
      the ratio with which pedestal events or events with signals
      are contained in the data.
+
+ ;star
+
+   * For the calculation of the effective on time all sum-triggered events
+     were skipped. Now all Level1-triggeres events will pass. This might
+     result in a slight inaccuracy of the effective on time.
 
  ;ganymed
Index: trunk/MagicSoft/Mars/mbase/MContinue.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MContinue.cc	(revision 9177)
+++ trunk/MagicSoft/Mars/mbase/MContinue.cc	(revision 9178)
@@ -33,4 +33,5 @@
 // To invert the meaning of the contained filter call SetInverted()
 //
+//
 //  Input Containers:
 //   -/-
@@ -38,4 +39,9 @@
 //  Output Containers:
 //   -/-
+//
+//
+// Class Version 2:
+// ----------------
+//  + Int_t fRc;
 //
 /////////////////////////////////////////////////////////////////////////////
Index: trunk/MagicSoft/Mars/mbase/MContinue.h
===================================================================
--- trunk/MagicSoft/Mars/mbase/MContinue.h	(revision 9177)
+++ trunk/MagicSoft/Mars/mbase/MContinue.h	(revision 9178)
@@ -25,5 +25,5 @@
     MTaskList *fTaskList;  //! pointer to the present tasklist
 
-    Int_t fRc;
+    Int_t fRc;             // Return code returned in Process()
 
     // MTask
@@ -57,5 +57,5 @@
     void Print(Option_t *o="") const; //*MENU*
 
-    ClassDef(MContinue, 1) //Task returning kCONTINUE
+    ClassDef(MContinue, 2) //Task returning kCONTINUE
 };
 
Index: trunk/MagicSoft/Mars/mjobs/MJStar.cc
===================================================================
--- trunk/MagicSoft/Mars/mjobs/MJStar.cc	(revision 9177)
+++ trunk/MagicSoft/Mars/mjobs/MJStar.cc	(revision 9178)
@@ -270,7 +270,8 @@
     MFTriggerPattern fsum;
     fsum.SetDefault(kTRUE);
-    fsum.DenySumTrigger();
-    fsum.AllowTriggerLvl1();
-    //fsum.RequireTriggerLvl1();
+    fsum.DenyAll();
+    fsum.RequireTriggerLvl1();
+    fsum.AllowTriggerLvl2();
+    fsum.AllowSumTrigger();
     fill9.SetFilter(&fsum);
 
Index: trunk/MagicSoft/Mars/mraw/MRawFileRead.cc
===================================================================
--- trunk/MagicSoft/Mars/mraw/MRawFileRead.cc	(revision 9177)
+++ trunk/MagicSoft/Mars/mraw/MRawFileRead.cc	(revision 9178)
@@ -194,5 +194,5 @@
     {
         *fLog << err << "Cannot open file " << expname << ": ";
-        *fLog << (errno==0?strerror(errno):"Insufficient memory for decompression") << endl;
+        *fLog << (errno!=0?strerror(errno):"Insufficient memory for decompression") << endl;
     }
     else
