Index: trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h	(revision 2054)
+++ trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h	(revision 2055)
@@ -10,43 +10,41 @@
 private:
 
-    Int_t   fPixId;        // the pixel Id
+    Int_t    fPixId;     // the pixel Id
 
-    UShort_t fRing;         // NT: number of analyzed rings around the core pixels
-    Bool_t   fIsCore;       // the pixel is a Core pixel          --> kTRUE
+    UShort_t fRing;      // NT: number of analyzed rings around the core pixels
+    Bool_t   fIsCore;    // the pixel is a Core pixel          --> kTRUE
 
-    Float_t  fPhot;        // The number of Cerenkov photons
-    Float_t  fErrPhot;     // the error of fPhot
+    UShort_t fRing;      // NT: number of analyzed rings around the core pixels
+    Float_t  fPhot;      // The number of Cerenkov photons
+    Float_t  fErrPhot;   // the error of fPhot
 
     // FIXME: arrival time t, and it's error sigma t
 
 public:
-
     MCerPhotPix(Int_t pix=-1, Float_t phot=0, Float_t errphot=0);
 
-    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);
+    Bool_t   IsPixelUsed() const      { return fRing>0; }
+    void     SetPixelUnused()         { fRing=0; }
+    void     SetPixelUsed()           { fRing=1; }
 
-    Bool_t  IsPixelUsed() const      { return fRing>0; }
-    void    SetPixelUnused()         { fRing=0; }
-    void    SetPixelUsed()           { fRing=1; }
+    void     SetRing(UShort_t r)      { fRing = r;   }
+    Short_t  GetRing() const          { return fRing;}
 
-    void    SetRing(UShort_t r)      { fRing = r;   }
-    Short_t GetRing() const          { return fRing;}
+    void     SetPixelCore()              { fIsCore = kTRUE; }
+    Bool_t   IsPixelCore() const         { return fIsCore;  }
 
-    void    SetPixelCore()           { fIsCore = kTRUE; }
-    Bool_t  IsPixelCore() const      { return fIsCore;  }
+    void     SetNumPhotons(Float_t f)    { fPhot    = f; }
+    void     SetErrorPhot(Float_t f)     { fErrPhot = f; }
+    void     Set(Float_t np, Float_t ep) { fPhot = np; fErrPhot = ep; }
 
-    void    SetNumPhotons(Float_t f)    { fPhot    = f; }
-    void    SetErrorPhot(Float_t f)     { fErrPhot = f; }
-    void    Set(Float_t np, Float_t ep) { fPhot = np; fErrPhot = ep; }
+    void     AddNumPhotons(Float_t f)    { fPhot += f; }
 
-    void    AddNumPhotons(Float_t f)    { fPhot += f; }
+    void     Scale(Float_t f)            { fPhot/=f; }
 
-    void    Scale(Float_t f)            { fPhot/=f; }
-
-    void    Print(Option_t *opt = NULL) const;
+    void     Print(Option_t *opt = NULL) const;
 
     ClassDef(MCerPhotPix, 1)  // class containing information about the Cerenkov Photons in a pixel
