Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 2829)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 2830)
@@ -15,4 +15,7 @@
      - fixed a bug due to which DrawClone crashed when class was used 
        in a compiled macro
+
+   * mcalib/MCalibrationCalc.cc
+     - fixed the warns and errs in fLog's
 
  2004/01/16: Abelardo Moralejo
Index: /trunk/MagicSoft/Mars/mcalib/MCalibrationBlindPix.h
===================================================================
--- /trunk/MagicSoft/Mars/mcalib/MCalibrationBlindPix.h	(revision 2829)
+++ /trunk/MagicSoft/Mars/mcalib/MCalibrationBlindPix.h	(revision 2830)
@@ -11,4 +11,6 @@
 {
 private:
+
+  MHCalibrationBlindPixel *fHist; // Pointer to the histograms performing the fits, etc.  
 
   Float_t fLambda;           // The mean charge after the fit
@@ -27,5 +29,4 @@
   Float_t fErrTime;             // The error of the mean arrival time after the fit
   
-  MHCalibrationBlindPixel *fHist; // Pointer to the histograms performing the fits, etc.  
   
 public:
@@ -51,6 +52,6 @@
   Float_t GetErrTime()   const    { return fErrTime;      }
   
-  Bool_t FillCharge(Float_t q)    { return fHist->FillBlindPixelCharge(q); }
-  Bool_t FillTime(Int_t t)        { return fHist->FillBlindPixelTime(t); }  
+  Bool_t FillCharge(Float_t q)                  { return fHist->FillBlindPixelCharge(q); }
+  Bool_t FillTime(Int_t t)                      { return fHist->FillBlindPixelTime(t); }  
   Bool_t FillRChargevsTime(Float_t rq, Int_t t) { return fHist->FillBlindPixelChargevsN(rq,t); }    
   
@@ -60,5 +61,7 @@
   Bool_t FitTime();
   
-  virtual void Draw(Option_t *opt="")         { fHist->Draw(opt); }
+  void Draw(Option_t *opt="")                     { fHist->Draw(opt); }
+  TObject *DrawClone(Option_t *opt="") const    { return fHist->DrawClone(opt); }  
+
   MHCalibrationBlindPixel *GetHist()  const  { return fHist;  }
   
