Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 9541)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 9542)
@@ -18,4 +18,17 @@
 
                                                  -*-*- END OF LINE -*-*-
+
+ 2010/02/04 Stefan Ruegamer
+
+   * mraw/MRawRunHeader.cc
+     - changed GetTypeID()!=fTelescopeNumber*10U+5U to GetTypeID()!=5U
+       so that the new 5xxxxxx sequences can be processed
+     - adapted error message
+     - inserted Domino calibration run
+     
+   * mraw/MRawRunHeader.cc
+     - inserted Domino calibration run
+
+
 
  2010/02/01 Daniela Dorner
Index: /trunk/MagicSoft/Mars/mraw/MRawRunHeader.cc
===================================================================
--- /trunk/MagicSoft/Mars/mraw/MRawRunHeader.cc	(revision 9541)
+++ /trunk/MagicSoft/Mars/mraw/MRawRunHeader.cc	(revision 9542)
@@ -351,7 +351,7 @@
         if (GetTypeID()!=fTelescopeNumber     &&
             GetTypeID()!=fTelescopeNumber*10U &&
-            GetTypeID()!=fTelescopeNumber*10U+5U)
+            GetTypeID()!=5U)
         {
-            *fLog << err << "ERROR - Telscope number " << fTelescopeNumber << " doesn't match the first two digits of the run number " << fRunNumber << "." << endl;
+            *fLog << err << "ERROR - Telescope number " << fTelescopeNumber << " doesn't match the first two digits of the run number " << fRunNumber << " and run number doesn't start with 5." << endl;
             return kFALSE;
         }
@@ -950,4 +950,6 @@
     case kRTCalibration:
         return "Calibration";
+    case kRTDominoCal:
+        return "DominoCal";
     case kRTLinearity:
         return "Linearity";
@@ -974,4 +976,6 @@
     case kRTCalibration:
         return 'C';
+    case kRTDominoCal:
+        return 'L';
     case kRTLinearity:
         return 'N';
Index: /trunk/MagicSoft/Mars/mraw/MRawRunHeader.h
===================================================================
--- /trunk/MagicSoft/Mars/mraw/MRawRunHeader.h	(revision 9541)
+++ /trunk/MagicSoft/Mars/mraw/MRawRunHeader.h	(revision 9542)
@@ -25,4 +25,5 @@
         kRTPedestal    = 0x0001,
         kRTCalibration = 0x0002,
+        kRTDominoCal   = 0x0003,
         kRTLinearity   = 0x0004,
         kRTPointRun    = 0x0007,
