Index: trunk/MagicSoft/Mars/mcalib/MCalibrateData.cc
===================================================================
--- trunk/MagicSoft/Mars/mcalib/MCalibrateData.cc	(revision 6039)
+++ trunk/MagicSoft/Mars/mcalib/MCalibrateData.cc	(revision 6040)
@@ -824,3 +824,31 @@
 }
 
-
+//----------------------------------------------------------------------------------------------------
+//
+Bool_t MCalibrateData::GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type) const
+{
+
+  if (idx > GetSize())
+    return kFALSE;
+
+  switch (type)
+    {
+    case 0:
+      val = fCalibConsts[idx];
+      break;
+    default:
+      return kFALSE;
+    }
+
+  return val!=0.;
+}
+
+
+// --------------------------------------------------------------------------
+//
+//
+void MCalibrateData::DrawPixelContent(Int_t idx) const
+{
+  *fLog << warn << "DrawPixelContent not available in" << GetDescriptor() << endl;
+}
+
Index: trunk/MagicSoft/Mars/mcalib/MCalibrateData.h
===================================================================
--- trunk/MagicSoft/Mars/mcalib/MCalibrateData.h	(revision 6039)
+++ trunk/MagicSoft/Mars/mcalib/MCalibrateData.h	(revision 6040)
@@ -57,7 +57,7 @@
   Float_t  fRenormFactor;                // Possible renormalization factor for signals (-> phes)
   
-  TList fNamesPedestal;                  // Names of input and output pedestal conatainer
-  TList fPedestalCams;                   //! List of pointers to input MPedestalCam
-  TList fPedPhotCams;                    //! List of pointers to corresponding output MPedPhotCam
+  TList   fNamesPedestal;                // Names of input and output pedestal conatainer
+  TList   fPedestalCams;                 //! List of pointers to input MPedestalCam
+  TList   fPedPhotCams;                  //! List of pointers to corresponding output MPedPhotCam
 
   MArrayF fCalibConsts;                  //! Array of calibration constants for each pixel, calculated only once!
