Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 4168)
+++ trunk/MagicSoft/Mars/Changelog	(revision 4169)
@@ -24,4 +24,6 @@
      - add possibility to switch on and off the blind pixel or pin diode
        calibration
+     - fixed a small bug in reading the MCalibrationRelTimeCam when the
+       times calibration has been switched off.
 
    * mjobs/MExtractSignal.[h,cc]
Index: trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
===================================================================
--- trunk/MagicSoft/Mars/mjobs/MJCalibration.cc	(revision 4168)
+++ trunk/MagicSoft/Mars/mjobs/MJCalibration.cc	(revision 4169)
@@ -1091,9 +1091,11 @@
     }
   
-  if (fRelTimeCam.Read()<=0)
-    {
-      *fLog << err << "Unable to read MCalibrationRelTimeCam from " << fname << endl;
-      return kFALSE;
-    }
+
+  if (fRelTimes)
+    if (fRelTimeCam.Read()<=0)
+      {
+        *fLog << err << "Unable to read MCalibrationRelTimeCam from " << fname << endl;
+        return kFALSE;
+      }
   
   if (file.FindKey("MBadPixelsCam"))
