Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 8938)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 8939)
@@ -20,4 +20,37 @@
 
 
+ 2008/06/12 Thomas Bretz
+
+   * datacenter/macros/plotdb.C:
+     - improved some titles
+     - added the new rates
+     - added the new values from the star-files
+
+   * mbase/MStatusDisplay.cc:
+     - removing the canvases from the global list didn't work
+       because some RecursiveRemovs rely on gROOT->FindObject to work
+       (adding them to another list didn't work either)
+
+   * mhflux/MHEnergyEst.cc:
+     - renamed the "Resolution" Histogram accordingly.
+
+   * mjobs/MJCalibrateSignal.cc:
+     - added a histogram showing the arrival time of 
+       extracted interleaved calibration events
+
+   * mraw/MRawEvtData.[h,cc]:
+     - fixed the Draw function. It was broken since the latest changes
+     - added fNumBytesPerSample to the Copy-function
+     - fixed the GetSample-function
+     - added a new member funtion to return the maximu possible
+
+   * mars.rc:
+     - changed the default for the MUX spline to the 50 sl window
+
+   * msignal/MSignalCalc.cc:
+     - scale the pedestal correctly with the scale
+
+
+
  2008/06/11 Thomas Bretz
 
@@ -30,4 +63,10 @@
      - remove the embedded canvas from the global list to prevent
        global access to it
+
+   * mhbase/MH3.cc:
+     - fixed a bug if in a 2D constructor a 1D profile was created
+
+   * mreport/MReportPyrometer.cc:
+     - tiny changes to the comments
 
 
Index: /trunk/MagicSoft/Mars/NEWS
===================================================================
--- /trunk/MagicSoft/Mars/NEWS	(revision 8938)
+++ /trunk/MagicSoft/Mars/NEWS	(revision 8939)
@@ -109,4 +109,7 @@
     * Added a new command line option --dev-null to suppress output of
       Y-files (this is useful for test cases)
+
+    * added a new tab "CalPos" showing the arrival time of extracted
+      interleaved calibration events
 
  ;star
Index: /trunk/MagicSoft/Mars/mars.rc
===================================================================
--- /trunk/MagicSoft/Mars/mars.rc	(revision 8938)
+++ /trunk/MagicSoft/Mars/mars.rc	(revision 8939)
@@ -59,6 +59,6 @@
 #ExtractSignal.RiseTimeHiGain:   4.3
 #ExtractSignal.FallTimeHiGain:   5.1
-#ExtractSignal.HiGainFirst:      15
-#ExtractSignal.HiGainLast:       65
+#ExtractSignal.HiGainFirst:      0
+#ExtractSignal.HiGainLast:       49
 
 # -------------------------------------------------------------------------
Index: /trunk/MagicSoft/Mars/msignal/MSignalCalc.cc
===================================================================
--- /trunk/MagicSoft/Mars/msignal/MSignalCalc.cc	(revision 8938)
+++ /trunk/MagicSoft/Mars/msignal/MSignalCalc.cc	(revision 8939)
@@ -125,5 +125,4 @@
 // pixel in the MSignalCam container.
 //
-#include <TSystem.h>
 Int_t MSignalCalc::Process()
 {
@@ -261,5 +260,5 @@
         // MMcPedestalCopy and MMcPedestalNSBAdd
         if (fPedestals)
-            (*fPedestals)[i].Set(b, sigb);
+            (*fPedestals)[i].Set(b/fRunHeader->GetScale(), sigb/fRunHeader->GetScale());
     }
 
