Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 6963)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 6964)
@@ -33,4 +33,8 @@
        // not necessary, because without running job2 it is identical
        // with job1
+
+   * mjobs/MSequence.cc:
+     - use the sequence number'd directories in case of calibrated data
+       and image files instead of the date.
 
 
Index: /trunk/MagicSoft/Mars/NEWS
===================================================================
--- /trunk/MagicSoft/Mars/NEWS	(revision 6963)
+++ /trunk/MagicSoft/Mars/NEWS	(revision 6964)
@@ -18,4 +18,7 @@
      runs since some of the recent calibration runs have been taken 
      with Pin Diode.
+
+   - Changed the default paths for calibrated data and image files.
+     (The implemented access to these files doesn't yet exist)
 
 
Index: /trunk/MagicSoft/Mars/mjobs/MSequence.cc
===================================================================
--- /trunk/MagicSoft/Mars/mjobs/MSequence.cc	(revision 6963)
+++ /trunk/MagicSoft/Mars/mjobs/MSequence.cc	(revision 6964)
@@ -223,4 +223,5 @@
         case kRawAll:
             d += "rawfiles/";
+            d += fNight.GetStringFmt("%Y/%m/%d");
             break;
         case kRootDat:
@@ -229,13 +230,13 @@
         case kRootAll:
             d += "merpp/";
+            d += fNight.GetStringFmt("%Y/%m/%d");
             break;
         case kCalibrated:
-            d += "callisto/";
+            d += Form("callisto/%04d/%08d/", fSequence/10000, fSequence);
             break;
         case kImages:
-            d += "star/";
+            d += Form("star/%04d/%08d/", fSequence/10000, fSequence);
             break;
         }
-        d += fNight.GetStringFmt("%Y/%m/%d");
     }
     else
