Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 4008)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 4009)
@@ -20,4 +20,8 @@
 
  2004/05/07: Markus Gaug
+
+   * mjobs/MJCalibration.cc
+     - take runs 20660 and 20661 into the list of known runs with colour
+       green.
 
    * mpedestal/MPedCalcPedRun.[h,cc]
Index: /trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
===================================================================
--- /trunk/MagicSoft/Mars/mjobs/MJCalibration.cc	(revision 4008)
+++ /trunk/MagicSoft/Mars/mjobs/MJCalibration.cc	(revision 4009)
@@ -700,4 +700,36 @@
       filenames.ToLower();
 
+      //
+      // Here starts the list of runs where the shifters did not put 
+      // a colour, but which have been found out by other means
+      //
+      if (filenames.Contains("_20660_"))
+        if (fColor == MCalibrationCam::kNONE)
+          {
+            *fLog << "Found colour: kGREEN  in " << filenames << endl;
+            fColor = MCalibrationCam::kGREEN;
+          }
+        else if (fColor != MCalibrationCam::kGREEN)
+          {
+            *fLog << err << "Different colour found in " << filenames << "... abort" << endl;
+            return kFALSE;
+          }
+
+      if (filenames.Contains("_20661_"))
+        if (fColor == MCalibrationCam::kNONE)
+          {
+            *fLog << "Found colour: kGREEN  in " << filenames << endl;
+            fColor = MCalibrationCam::kGREEN;
+          }
+        else if (fColor != MCalibrationCam::kGREEN)
+          {
+            *fLog << err << "Different colour found in " << filenames << "... abort" << endl;
+            return kFALSE;
+          }
+
+      //
+      // Here start the runs where the shifter put 
+      // the colour
+      //
       if (filenames.Contains("green"))
         if (fColor == MCalibrationCam::kNONE)
