Index: trunk/MagicSoft/Mars/mimage/MNewImagePar.cc
===================================================================
--- trunk/MagicSoft/Mars/mimage/MNewImagePar.cc	(revision 3415)
+++ trunk/MagicSoft/Mars/mimage/MNewImagePar.cc	(revision 3466)
@@ -37,4 +37,8 @@
 // ----------
 //  - added fNumSaturatedPixels
+// 
+// Version 3:
+// ----------
+//  - added fNumHGSaturatedPixels
 // 
 /////////////////////////////////////////////////////////////////////////////
@@ -82,4 +86,5 @@
 
     fNumSaturatedPixels = -1;
+    fNumHGSaturatedPixels = -1;
 }
 
@@ -95,4 +100,5 @@
 
     fNumSaturatedPixels = 0;
+    fNumHGSaturatedPixels = 0;
 
     const UInt_t npixevt = evt.GetNumPixels();
@@ -109,4 +115,6 @@
 
         // count saturated pixels
+	if (pix.IsPixelHGSaturated())
+            fNumHGSaturatedPixels++;
 	if (pix.IsPixelSaturated())
             fNumSaturatedPixels++;
@@ -175,4 +183,5 @@
     *fLog << " - Used Pixels    [#]   = " << fNumUsedPixels << " Pixels" << endl;
     *fLog << " - Core Pixels    [#]   = " << fNumCorePixels << " Pixels" << endl;
-    *fLog << " - Sat. Pixels    [#]   = " << fNumSaturatedPixels << " Pixels" << endl;
+    *fLog << " - Sat. Pixels (HG) [#]  = " << fNumHGSaturatedPixels << " Pixels" << endl;
+    *fLog << " - Sat. Pixels (LG) [#]  = " << fNumSaturatedPixels << " Pixels" << endl;
 }
Index: trunk/MagicSoft/Mars/mimage/MNewImagePar.h
===================================================================
--- trunk/MagicSoft/Mars/mimage/MNewImagePar.h	(revision 3415)
+++ trunk/MagicSoft/Mars/mimage/MNewImagePar.h	(revision 3466)
@@ -21,5 +21,6 @@
     Short_t fNumUsedPixels;      // Number of pixels which survived the image cleaning
     Short_t fNumCorePixels;      // number of core pixels
-    Short_t fNumSaturatedPixels; // number of pixels with saturating lo-gains
+    Short_t fNumHGSaturatedPixels; // number of pixels with saturating hi-gains
+    Short_t fNumSaturatedPixels;   // number of pixels with saturating lo-gains
 
 public:
@@ -38,4 +39,5 @@
 
     Short_t GetNumSaturatedPixels() const { return fNumSaturatedPixels; }
+    Short_t GetNumHGSaturatedPixels() const { return fNumHGSaturatedPixels; }
 
     void Print(Option_t *opt=NULL) const;
@@ -44,5 +46,5 @@
               const MHillas &hillas);
 
-    ClassDef(MNewImagePar, 2) // Container to hold new image parameters
+    ClassDef(MNewImagePar, 3) // Container to hold new image parameters
 };
 
