Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 5478)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 5479)
@@ -55,4 +55,9 @@
      - added a direct calculation of mean's and RMS's stored in the 
        "LoGain"-variables of MCalibrationPedCam
+
+   * mpedestal/MCalibrationPedCam.cc
+     - added new flags in the GetPixelContent called the "low-gain" 
+       entries (s.a.)
+
   
    * mpedestal/MExtractPedestal.[h,cc]
Index: /trunk/MagicSoft/Mars/mcalib/MCalibrationPedCam.cc
===================================================================
--- /trunk/MagicSoft/Mars/mcalib/MCalibrationPedCam.cc	(revision 5478)
+++ /trunk/MagicSoft/Mars/mcalib/MCalibrationPedCam.cc	(revision 5479)
@@ -118,17 +118,29 @@
     {
     case 0:
-      val = (*this)[idx].GetMean();
+      val = (*this)[idx].GetHiGainMean();
       break;
     case 1:
-      val = (*this)[idx].GetMeanErr();
+      val = (*this)[idx].GetHiGainMeanErr();
       break;
     case 2:
-      val = (*this)[idx].GetSigma();
+      val = (*this)[idx].GetHiGainSigma();
       break;
     case 3:
-      val = (*this)[idx].GetSigmaErr();
+      val = (*this)[idx].GetHiGainSigmaErr();
       break;
     case 4:
-      val = (*this)[idx].GetProb();
+      val = (*this)[idx].GetHiGainProb();
+      break;
+    case 5:
+      val = (*this)[idx].GetLoGainMean() > 1. ? 0. : (*this)[idx].GetLoGainMean();
+      break;
+    case 6:
+      val = (*this)[idx].GetLoGainMeanErr();
+      break;
+    case 7:
+      val = (*this)[idx].GetLoGainSigma();
+      break;
+    case 8:
+      val = (*this)[idx].GetLoGainSigmaErr();
       break;
     default:
Index: /trunk/MagicSoft/Mars/mhcalib/MHCalibrationTestCam.h
===================================================================
--- /trunk/MagicSoft/Mars/mhcalib/MHCalibrationTestCam.h	(revision 5478)
+++ /trunk/MagicSoft/Mars/mhcalib/MHCalibrationTestCam.h	(revision 5479)
@@ -6,9 +6,9 @@
 #endif
 
-#ifndef ROOT_TArrayF
-#include <TArrayF.h>
+#ifndef MARS_MArrayF
+#include <MArrayF.h>
 #endif
-#ifndef ROOT_TArrayI
-#include <TArrayI.h>
+#ifndef MARS_MArrayI
+#include <MArrayI.h>
 #endif
 
@@ -27,8 +27,8 @@
   static const TString gsHistYTitle;   //! Default Histogram y-axis titles
   
-  TArrayF fMeanMeanPhotPerArea;
-  TArrayF fRmsMeanPhotPerArea   ;
-  TArrayF fMeanSigmaPhotPerArea;
-  TArrayF fRmsSigmaPhotPerArea   ;
+  MArrayF fMeanMeanPhotPerArea;
+  MArrayF fRmsMeanPhotPerArea   ;
+  MArrayF fMeanSigmaPhotPerArea;
+  MArrayF fRmsSigmaPhotPerArea   ;
 
   Bool_t ReInitHists(MParList *pList);
