Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 3439)
+++ trunk/MagicSoft/Mars/Changelog	(revision 3440)
@@ -6,7 +6,12 @@
 
 2004/03/08: Abelardo Moralejo
+
   * macros/starmstereo.C
     - adapted to m. Gaug's changes: now one MBadPixelsCam containers is 
       added for each telescope to the parameter list.
+
+  * mmain/MEventDisplay.cc, Makefile
+    - added MBadPixelsCam to par list, and mbadpixels/ to includes.
+      Necessary due to changes in MCalibrate.
 
 2004/03/06: Markus Gaug
Index: trunk/MagicSoft/Mars/mmain/MEventDisplay.cc
===================================================================
--- trunk/MagicSoft/Mars/mmain/MEventDisplay.cc	(revision 3439)
+++ trunk/MagicSoft/Mars/mmain/MEventDisplay.cc	(revision 3440)
@@ -85,5 +85,5 @@
 #include "MRawEvtData.h"         // MRawEvtData
 #include "MArrivalTimeCam.h"     // MArrivalTimeCam
-
+#include "MBadPixelsCam.h"       // MBadPixelsCam
 
 ClassImp(MEventDisplay);
@@ -154,4 +154,7 @@
     plist->SetOwner();
     plist->AddToList(tlist);
+
+    MBadPixelsCam *badpix = new MBadPixelsCam;
+    plist->AddToList(badpix);
 
     fEvtLoop = new MEvtLoop;
Index: trunk/MagicSoft/Mars/mmain/Makefile
===================================================================
--- trunk/MagicSoft/Mars/mmain/Makefile	(revision 3439)
+++ trunk/MagicSoft/Mars/mmain/Makefile	(revision 3440)
@@ -25,5 +25,5 @@
 	   -I../mgui -I../mgeom -I../mhbase -I../mhist -I../mmontecarlo   \
            -I../mfileio -I../mimage -I../mhistmc -I../mgbase -I../mfbase \
-           -I../mdata -I../msignal -I../mcalib
+           -I../mdata -I../msignal -I../mcalib -I../mbadpixels
 
 #------------------------------------------------------------------------------
