Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 6033)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 6034)
@@ -58,9 +58,10 @@
      - trying to get rid of the Err_%p workaround.
 
-   * manalysis/MCerPhotEvt.h:
+   * manalysis/MCerPhotEvt.[h,cc]:
      - added some '!' signs in the comment line. This is quick hack
        to gain I/O speed and storage space. We will soon have new
        containers for the calibrated data and image cleaning
        information.
+     - changed version number to 6
 
 
Index: /trunk/MagicSoft/Mars/manalysis/MCerPhotPix.cc
===================================================================
--- /trunk/MagicSoft/Mars/manalysis/MCerPhotPix.cc	(revision 6033)
+++ /trunk/MagicSoft/Mars/manalysis/MCerPhotPix.cc	(revision 6034)
@@ -48,4 +48,14 @@
 // ----------
 //  - added fIdxIsland
+//
+// Version 6:
+// ----------
+//  - put the '!' into the comment line for
+//      Bool_t   fIsCore;        //! the pixel is a Core pixel -> kTRUE
+//      Short_t  fRing;          //! NT: number of analyzed rings around the core pixels, fRing>0 means: used, fRing= 0 means: unused, fRing= -1 means: unmapped (no possible to use in the calculation of the image parameters)
+//      Short_t  fIdxIsland;     //! the pixel is a Core pixel -> kTRUE
+//      Bool_t   fIsHGSaturated; //! the pixel's high gain is saturated
+//    This is a queick hack to gain storage space - the structure of
+//    the container for calibrated data will change soon.
 //
 ////////////////////////////////////////////////////////////////////////////
Index: /trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h
===================================================================
--- /trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h	(revision 6033)
+++ /trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h	(revision 6034)
@@ -5,20 +5,23 @@
 #include "MParContainer.h"
 #endif
+#ifndef MARS_MMath
 #include "MMath.h"
+#endif
+
 class MCerPhotPix : public MParContainer
 {
 private:
 
-    Int_t    fPixId;     // the pixel Id
+    Int_t    fPixId;         // the pixel Id
 
-    Bool_t   fIsCore;     // the pixel is a Core pixel -> kTRUE
-    Short_t  fRing;       // NT: number of analyzed rings around the core pixels, fRing>0 means: used, fRing= 0 means: unused, fRing= -1 means: unmapped (no possible to use in the calculation of the image parameters)
-    Short_t  fIdxIsland;  // the pixel is a Core pixel -> kTRUE
+    Bool_t   fIsCore;        //! the pixel is a Core pixel -> kTRUE
+    Short_t  fRing;          //! NT: number of analyzed rings around the core pixels, fRing>0 means: used, fRing= 0 means: unused, fRing= -1 means: unmapped (no possible to use in the calculation of the image parameters)
+    Short_t  fIdxIsland;     //! the pixel is a Core pixel -> kTRUE
 
-    Float_t  fPhot;      // The number of Cerenkov photons
-    Float_t  fErrPhot;   // the error of fPhot
+    Float_t  fPhot;          // The number of Cerenkov photons
+    Float_t  fErrPhot;       // the error of fPhot
 
     Bool_t   fIsSaturated;   // the pixel's low gain is saturated
-    Bool_t   fIsHGSaturated; // the pixel's high gain is saturated
+    Bool_t   fIsHGSaturated; //! the pixel's high gain is saturated
 
     // FIXME: arrival time t, and it's error sigma t
@@ -63,9 +66,6 @@
     Bool_t  IsSortable() const { return kTRUE; }
 
-    ClassDef(MCerPhotPix, 5)  // class containing information about the Cerenkov Photons in a pixel
+    ClassDef(MCerPhotPix, 6)  // class containing information about the Cerenkov Photons in a pixel
 };
 
 #endif
-
-
-
