Index: trunk/MagicSoft/Mars/mcalib/MCalibrationPix.cc
===================================================================
--- trunk/MagicSoft/Mars/mcalib/MCalibrationPix.cc	(revision 2949)
+++ trunk/MagicSoft/Mars/mcalib/MCalibrationPix.cc	(revision 2950)
@@ -312,5 +312,5 @@
 // 3) Decide if the LoGain Histogram is fitted or the HiGain Histogram
 // 4) Fit the histograms with a Gaussian
-// 5) In case of failure print out the fit results
+// 5) In case of failure set the bit kFitted to false
 // 6) Retrieve the results and store them in this class
 // 7) Calculate the number of photo-electrons after the F-Factor method
@@ -371,7 +371,6 @@
       *fLog << warn << "WARNING: Could not fit charges of pixel " << fPixId << endl;
       //          
-      // 5) In case of failure print out the fit results
-      //
-      //	  fHist->PrintChargeFitResult();
+      // 5) In case of failure set the bit kFitted to false
+      //
       CLRBIT(fFlags,kFitted);
     }
Index: trunk/MagicSoft/Mars/mcalib/MCalibrationPix.h
===================================================================
--- trunk/MagicSoft/Mars/mcalib/MCalibrationPix.h	(revision 2949)
+++ trunk/MagicSoft/Mars/mcalib/MCalibrationPix.h	(revision 2950)
@@ -64,5 +64,5 @@
           kBlindPixelMethodValid, kFFactorMethodValid, kPINDiodeMethodValid };
   
-  MHCalibrationPixel *fHist;                //! Pointer to the histograms performing the fits, etc.  
+  MHCalibrationPixel *fHist;                // Pointer to the histograms performing the fits, etc.  
 
   Bool_t CheckChargeFitValidity();
Index: trunk/MagicSoft/Mars/mcalib/MHCalibrationPixel.cc
===================================================================
--- trunk/MagicSoft/Mars/mcalib/MHCalibrationPixel.cc	(revision 2949)
+++ trunk/MagicSoft/Mars/mcalib/MHCalibrationPixel.cc	(revision 2950)
@@ -331,9 +331,6 @@
 {
  
-  fHChargeHiGain->Reset();
-  fHTimeHiGain->Reset();
-  fHChargeLoGain->Reset();
-  fHTimeLoGain->Reset();
-
+  Reset();
+  
   return kTRUE;
 }
Index: trunk/MagicSoft/Mars/mcalib/MHCalibrationPixel.h
===================================================================
--- trunk/MagicSoft/Mars/mcalib/MHCalibrationPixel.h	(revision 2949)
+++ trunk/MagicSoft/Mars/mcalib/MHCalibrationPixel.h	(revision 2950)
@@ -107,6 +107,4 @@
 
   // Getters
-  const TH1F *GetHCharge() const           { return fHChargeHiGain;    }
-
   const Double_t GetChargeMean()     const { return fChargeMean;    }
   const Double_t GetChargeMeanErr()  const { return fChargeMeanErr; }
@@ -129,4 +127,7 @@
   const Int_t    GetTimeNdf()         const { return fTimeNdf;       }   
   
+  const TH1F *GetHCharge()                  { return fHChargeHiGain;    }
+  const TH1F *GetHCharge()            const { return fHChargeHiGain;    }
+
   const TH1F *GetHTime()                    { return fHTimeHiGain; }
   const TH1F *GetHTime()              const { return fHTimeHiGain; }
