Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 6038)
+++ trunk/MagicSoft/Mars/Changelog	(revision 6039)
@@ -21,4 +21,9 @@
                                                  -*-*- END OF LINE -*-*-
  2005/01/27 Daniel Mazin and Markus Gaug
+
+   * mcalib/MCalibrateData.[h,cc]
+     - derive this class from MCamEvent in order to be able to display
+       evolution of conversion factors in case of interlaced cal. 
+       events
 
    * mpointing/MInterpolatePointingPos.[h,cc]
Index: trunk/MagicSoft/Mars/mcalib/MCalibrateData.h
===================================================================
--- trunk/MagicSoft/Mars/mcalib/MCalibrateData.h	(revision 6038)
+++ trunk/MagicSoft/Mars/mcalib/MCalibrateData.h	(revision 6039)
@@ -25,4 +25,8 @@
 #endif
 
+#ifndef MARS_MCamEvent
+#include "MCamEvent.h"
+#endif
+
 class MGeomCam;
 class MBadPixelsCam;
@@ -35,5 +39,5 @@
 class MCerPhotEvt;
 
-class MCalibrateData : public MTask
+class MCalibrateData : public MTask, public MCamEvent
 {
 private:
@@ -107,4 +111,6 @@
   void   EnablePedestalType(PedestalType_t i)     { fPedestalFlag |=  i;      }
 
+  Int_t  GetSize() const { return fCalibConsts.GetSize(); }
+
   void   Print(Option_t *o="") const;
 
@@ -118,4 +124,7 @@
 
   Bool_t UpdateConversionFactors();
+
+  Bool_t GetPixelContent    ( Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0 ) const;
+  void DrawPixelContent( Int_t num) const;
   
   ClassDef(MCalibrateData, 1)   // Task to calibrate FADC counts into Cherenkov photons 
