Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 3387)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 3388)
@@ -4,4 +4,5 @@
 
                                                  -*-*- END OF LINE -*-*-
+
  2004/03/03: Sebastian Raducci
    * msignal/MArrivalTimeCalc.cc
@@ -10,4 +11,12 @@
 
  2004/03/03: Abelardo Moralejo
+   * mraw/MRawRunHeader.h
+     - Replaced
+         Bool_t IsMonteCarloRun() const { return fRunType>0x00ff; }  by
+         Bool_t IsMonteCarloRun() const { return (fRunType==0x0100); }
+
+     since the latter is the exact translation of what the function
+     intends to do. I do not know why, but the display of real data 
+     did not work with the upper line!
 
    * mgeom/MGeomCam.cc
Index: /trunk/MagicSoft/Mars/mraw/MRawRunHeader.h
===================================================================
--- /trunk/MagicSoft/Mars/mraw/MRawRunHeader.h	(revision 3387)
+++ /trunk/MagicSoft/Mars/mraw/MRawRunHeader.h	(revision 3388)
@@ -106,5 +106,5 @@
     Int_t GetNumTotalBytes() const;
 
-    Bool_t IsMonteCarloRun() const { return fRunType>0x00ff; }
+    Bool_t IsMonteCarloRun() const { return (fRunType==0x0100); }
 
     void Print(Option_t *t=NULL) const;
