Index: trunk/MagicSoft/Mars/mraw/MRawRunHeader.cc
===================================================================
--- trunk/MagicSoft/Mars/mraw/MRawRunHeader.cc	(revision 7646)
+++ trunk/MagicSoft/Mars/mraw/MRawRunHeader.cc	(revision 7647)
@@ -290,4 +290,6 @@
         fin.read((char*)&fTelescopeNumber, 2); // (+2)
     }
+    // Maybe we should set fCameraVersion and fTelescopeNumber to 1
+    // in case of fFormatVersion<6
 
     // ----- Run information -----
@@ -299,13 +301,17 @@
     if (fFormatVersion>5)
         fin.read((char*)fObservationMode, 60); // (+60)
+    // Maybe we should set fObservationMode to something
+    // in case of fFormatVersion<6
 
     // ----- Source position -----
-    fin.read((char*)dummy, 4); // F32 SourceRA;  Total=48
-    fin.read((char*)dummy, 4); // F32 SourceDEC; Total=52
     if (fFormatVersion>5)
     {
-        fin.read((char*)dummy, 4); // F32 TelescopeRA;  (+4)
-        fin.read((char*)dummy, 4); // F32 TelescopeDEC; (+4)
-    }
+        fin.read((char*)dummy, 4); // F32 SourceRA;  Total=48
+        fin.read((char*)dummy, 4); // F32 SourceDEC; Total=52
+    }
+    // Maybe we should set these to something
+    // in case of fFormatVersion<6
+    fin.read((char*)dummy, 4); // F32 TelescopeRA;  (+4)
+    fin.read((char*)dummy, 4); // F32 TelescopeDEC; (+4)
     fin.read((char*)&fSourceEpochChar,  2);     // Total=56
     fin.read((char*)&fSourceEpochDate,  2);     // Total=58
