Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 5413)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 5414)
@@ -26,4 +26,13 @@
      - make pixels with deviating time resolution unreliable instead of 
        unsuitable. This should take out 1 or 2 more unsuitable pixels. 
+
+   * mcalib/MCalibColorSet.cc
+     - introduce treatment of the case that one file in between the 
+       sequence of calibration runs is a pedestal file (run type == 1)
+       and return kCONTINUE in the process. As this task is at the 
+       beginning of the tasklist, the calibration tasks will be skipped
+       for these events. This treats now an interlaced pedestal run. 
+       Next will follow an interleaved pedestal event and finally an 
+       interleaved data event.
 
 
Index: /trunk/MagicSoft/Mars/mcalib/MCalibrationPix.cc
===================================================================
--- /trunk/MagicSoft/Mars/mcalib/MCalibrationPix.cc	(revision 5413)
+++ /trunk/MagicSoft/Mars/mcalib/MCalibrationPix.cc	(revision 5414)
@@ -398,4 +398,18 @@
 // --------------------------------------------------------------------------
 //
+// Get the High Gain Mean Rel Variance
+//
+Float_t MCalibrationPix::GetHiGainMeanRelVar()  const
+{
+  if (fHiGainMeanVar < 0.)
+    return -1.;
+  if (fHiGainMean   == 0.)
+    return -1.;
+
+  return fHiGainMeanVar / ( fHiGainMean * fHiGainMean);
+}
+
+// --------------------------------------------------------------------------
+//
 // Get the Low Gain Sigma Error: Takes square root of fHiGainSigmaVar
 //
Index: /trunk/MagicSoft/Mars/mcalib/MCalibrationPix.h
===================================================================
--- /trunk/MagicSoft/Mars/mcalib/MCalibrationPix.h	(revision 5413)
+++ /trunk/MagicSoft/Mars/mcalib/MCalibrationPix.h	(revision 5414)
@@ -70,4 +70,5 @@
   Float_t GetHiGainMean       () const { return fHiGainMean   ;     }
   Float_t GetHiGainMeanErr    () const;
+  Float_t GetHiGainMeanRelVar () const;
   Float_t GetHiGainProb       () const { return fHiGainProb   ;     }
   Float_t GetHiGainSigma      () const { return fHiGainSigma  ;     }
