Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 8002)
+++ trunk/MagicSoft/Mars/Changelog	(revision 8003)
@@ -32,7 +32,11 @@
 
    * mreport/MReport.cc:
-     - allow the milliseconds to be 1000 (this is a bug which affects the
-       reports invery rare cases)
+     - allow the milliseconds to be 1000 (this is a bug which affects
+       the camera reports in very rare cases)
      - improved output
+
+   * mjobs/MJCalibration.cc:
+     - added two plots the extracted signal and the extracted arrival
+     time
 
 
Index: trunk/MagicSoft/Mars/NEWS
===================================================================
--- trunk/MagicSoft/Mars/NEWS	(revision 8002)
+++ trunk/MagicSoft/Mars/NEWS	(revision 8003)
@@ -113,4 +113,9 @@
      behaviour dramatically. It tends to the average of the extraction
      range and starts sticking to non-floating point numbers (5, 6, 7, ...)
+
+   - callisto: Added two more plots to the calibration part. The average
+     extracted signal and the average extracted arrival time as
+     extracted by the signal extractor (This can help debugging problems
+     because it doesn't involve a fit)
 
    - star: changed the fit for the effective on time such that initial
Index: trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
===================================================================
--- trunk/MagicSoft/Mars/mjobs/MJCalibration.cc	(revision 8002)
+++ trunk/MagicSoft/Mars/mjobs/MJCalibration.cc	(revision 8003)
@@ -147,4 +147,6 @@
 #include "MHCalibrationRelTimeCam.h"
 #include "MHCalibrationPix.h"
+
+#include "MHCamEvent.h"
 
 #include "MReadMarsFile.h"
@@ -1965,4 +1967,15 @@
     tlist.AddToList(&calcalc);
 
+
+    MHCamEvent evt2(0, "Extra'd", "Extracted Calibration Signal;;S [cnts/sl]");
+    MHCamEvent evt9(4, "ArrTm",   "Extracted ArrivalTime;;T");
+
+    MFillH fill2(&evt2, "MExtractedSignalCam", "FillExtractedSignal");
+    MFillH fill9(&evt9, "MArrivalTimeCam",     "FillArrivalTime");
+
+    tlist.AddToList(&fill2);
+    tlist.AddToList(&fill9);
+
+
     // Create and setup the eventloop
     MEvtLoop evtloop(fName);
