Index: trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h	(revision 1018)
+++ trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h	(revision 1023)
@@ -24,21 +24,21 @@
     MCerPhotPix(Int_t pix = -1, Float_t phot=0., Float_t errphot=0.);
 
-    void Print(Option_t *opt = NULL) const;
+    Int_t   GetPixId() const         { return fPixId;   }
+    Float_t GetNumPhotons() const    { return fPhot;    }
+    Float_t GetErrorPhot() const     { return fErrPhot; }
 
-    Int_t   GetPixId() const      { return fPixId;   }
-    Float_t GetNumPhotons() const { return fPhot;    }
-    Float_t GetErrorPhot() const  { return fErrPhot; }
+    void    SetPixelContent(Int_t pix, Float_t phot, Float_t errphot);
 
-    void SetPixelContent(Int_t pix, Float_t phot, Float_t errphot);
+    Bool_t  IsPixelUsed() const      { return fIsUsed;   }
+    void    SetPixelUnused()         { fIsUsed = kFALSE; }
+    void    SetPixelUsed()           { fIsUsed = kTRUE;  }
 
-    Bool_t IsPixelUsed() const    { return fIsUsed;   }
-    void   SetPixelUnused()       { fIsUsed = kFALSE; }
-    void   SetPixelUsed()         { fIsUsed = kTRUE;  }
+    void    SetCorePixel()           { fIsCore = kTRUE; }
+    Bool_t  IsCorePixel() const      { return fIsCore;  }
 
-    void   SetCorePixel()         { fIsCore = kTRUE; }
-    Bool_t IsCorePixel() const    { return fIsCore;  }
+    void    SetNumPhotons(Float_t f) { fPhot    = f; }
+    void    SetErrorPhot(Float_t f)  { fErrPhot = f; }
 
-    void SetNumPhotons(Float_t f) { fPhot    = f; }
-    void SetErrorPhot(Float_t f)  { fErrPhot = f; }
+    void    Print(Option_t *opt = NULL) const;
 
     ClassDef(MCerPhotPix, 1)  // class containing information about the Cerenkov Photons in a pixel
