Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 3268)
+++ trunk/MagicSoft/Mars/Changelog	(revision 3269)
@@ -11,7 +11,6 @@
      - include GetNumHiGainSamples and GetNumLoGainSamples
 
-   * mcalib/MExtractBlindPixel.[h,cc]
-     - included const Getter to MRawEvtPixelIter
-     - included calculation of pedestals in PostProcess
+   * mcalib/MExtractedSignalBlindPixel.h
+     - included storage of pedestal
 
 
Index: trunk/MagicSoft/Mars/mcalib/MExtractedSignalBlindPixel.h
===================================================================
--- trunk/MagicSoft/Mars/mcalib/MExtractedSignalBlindPixel.h	(revision 3268)
+++ trunk/MagicSoft/Mars/mcalib/MExtractedSignalBlindPixel.h	(revision 3269)
@@ -16,4 +16,9 @@
   Byte_t fNumSaturated;
 
+  Float_t fPed;
+  Float_t fPedErr;
+  Float_t fPedRms;
+  Float_t fPedRmsErr;
+
 public:
 
@@ -25,13 +30,23 @@
   // Setter
   void SetExtractedSignal(const UInt_t sig)          { fExtractedSignal = sig;  }
-  void SetNumSaturated(  const Byte_t numsat)       { fNumSaturated    = numsat;  }
+  void SetNumSaturated(   const Byte_t numsat)       { fNumSaturated    = numsat;  }
   void SetUsedFADCSlices( const Byte_t first, const Byte_t num);
     
+  void SetPed(      const Float_t f )     { fPed       = f; }
+  void SetPedErr(   const Float_t f )     { fPedErr    = f; }
+  void SetPedRms(   const Float_t f )     { fPedRms    = f; }
+  void SetPedRmsErr(const Float_t f )     { fPedRmsErr = f; }
+
     // Getter
   UInt_t GetExtractedSignal()    const { return fExtractedSignal; }
 
-  Byte_t  GetNumFADCSamples()     const { return fNumFADCSamples;  }
+  Byte_t GetNumFADCSamples()     const { return fNumFADCSamples;  }
   
   Bool_t IsValid() const;   
+
+  Float_t GetPed()       const { return fPed;       }
+  Float_t GetPedErr()    const { return fPedErr;    }
+  Float_t GetPedRms()    const { return fPedRms;    }
+  Float_t GetPedRmsErr() const { return fPedRmsErr; }
 
   ClassDef(MExtractedSignalBlindPixel, 0)	// Storage Container for Extracted Signal of the blind pixel
@@ -39,2 +54,6 @@
 
 #endif
+
+
+
+
