Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 5479)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 5480)
@@ -56,8 +56,10 @@
        "LoGain"-variables of MCalibrationPedCam
 
-   * mpedestal/MCalibrationPedCam.cc
+   * mcalib/MCalibrationPedCam.cc
      - added new flags in the GetPixelContent called the "low-gain" 
        entries (s.a.)
 
+   * mcalib/MCalibColorSteer.[h,cc]
+     - removed pointer to MRawRunHeader
   
    * mpedestal/MExtractPedestal.[h,cc]
Index: /trunk/MagicSoft/Mars/mcalib/MCalibColorSteer.h
===================================================================
--- /trunk/MagicSoft/Mars/mcalib/MCalibColorSteer.h	(revision 5479)
+++ /trunk/MagicSoft/Mars/mcalib/MCalibColorSteer.h	(revision 5480)
@@ -9,4 +9,5 @@
 class MGeomCam;
 class MRawEvtHeader;
+class MRawRunHeader;
 class MCalibrationChargeCalc;
 class MCalibrationRelTimeCalc;
@@ -21,4 +22,5 @@
 
   MRawEvtHeader                   *fHeader;          //!
+  MRawRunHeader                   *fRunHeader;       //!
   MGeomCam                        *fGeom;            //!
   MParList                        *fParList;         //!
Index: /trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCam.cc
===================================================================
--- /trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCam.cc	(revision 5479)
+++ /trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCam.cc	(revision 5480)
@@ -400,4 +400,9 @@
 // 31: Error Ped. RMS entire signal extr. range  (see MCalibrationChargePix::PedRmsErr())
 //
+// Special variables (for data check):
+// ====================================
+//
+// 32: HiGain RMS divided by Mean for every pixel (with inclusion of the excluded pixels)
+//
 Bool_t MCalibrationChargeCam::GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type) const
 {
@@ -582,4 +587,7 @@
         return kFALSE;
       val = pix.GetPedErr()/2.;
+      break;
+    case 32:
+      val = pix.GetMean() == 0. ? 0. : pix.GetHiGainRms()/pix.GetMean();
       break;
     default:
