Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 9142)
+++ trunk/MagicSoft/Mars/Changelog	(revision 9143)
@@ -18,4 +18,12 @@
 
                                                  -*-*- END OF LINE -*-*-
+
+ 2008/10/14 Thomas Bretz
+
+   * mjobs/MJPedestal.cc:
+     - for extracting the pulse position we have to allow sum events 
+       but require level 1 trigger instead of disallowing sum-events
+
+
 
  2008/10/13 Thomas Bretz
Index: trunk/MagicSoft/Mars/NEWS
===================================================================
--- trunk/MagicSoft/Mars/NEWS	(revision 9142)
+++ trunk/MagicSoft/Mars/NEWS	(revision 9143)
@@ -36,4 +36,12 @@
 
    * Now allows to merpp files newer than 2008/09/03.
+
+ ;callisto
+
+   * Extracting the pulse position for the pulse position check events
+     with sum trigger were denied. This decreased the statistics
+     extremely and therefor the resulting puse position was calculated
+     quite weak. Now sum events pass the calculation if and only if they
+     have also a level 1 trigger.
 
 
Index: trunk/MagicSoft/Mars/mjobs/MJPedestal.cc
===================================================================
--- trunk/MagicSoft/Mars/mjobs/MJPedestal.cc	(revision 9142)
+++ trunk/MagicSoft/Mars/mjobs/MJPedestal.cc	(revision 9143)
@@ -1027,11 +1027,12 @@
     // calibration events in such data, so this is fine.
     // The selection is done with the trigger bits before prescaling
+    // Extract pulse position from Lvl1 events.
     MTriggerPatternDecode decode;
     MFTriggerPattern fcalib("SelectCosmics");
     fcalib.SetDefault(kTRUE);
     fcalib.DenyAll();
-    fcalib.AllowTriggerLvl1();
+    fcalib.RequireTriggerLvl1();
     fcalib.AllowTriggerLvl2();
-    //fcalib.AllowSumTrigger();
+    fcalib.AllowSumTrigger();
 
     tlist.AddToList(&decode);
