Index: trunk/MagicSoft/Mars/mmain/MEventDisplay.cc
===================================================================
--- trunk/MagicSoft/Mars/mmain/MEventDisplay.cc	(revision 2512)
+++ trunk/MagicSoft/Mars/mmain/MEventDisplay.cc	(revision 2521)
@@ -60,7 +60,9 @@
 #include "MReadMarsFile.h"       // MReadMarsFile
 #include "MGeomApply.h"          // MGeomApply
+#include "MFDataMember.h"        // MFDataMember
 #include "MMcPedestalCopy.h"     // MMcPedestalCopy
 #include "MMcPedestalNSBAdd.h"   // MMcPedestalNSBAdd
 #include "MCerPhotCalc.h"        // MCerPhotCalc
+#include "MCerPhotAnal2.h"       // MCerPhotAnal2
 #include "MImgCleanStd.h"        // MImgCleanStd
 #include "MHillasCalc.h"         // MHillasCalc
@@ -182,4 +184,5 @@
     MMcPedestalNSBAdd *pdnsb = new MMcPedestalNSBAdd;
     MCerPhotCalc      *ncalc = new MCerPhotCalc;
+    MCerPhotAnal2     *nanal = new MCerPhotAnal2;
     MFillH            *fill1 = new MFillH(evt1, "MCerPhotEvt",  "MFillH1");
     MImgCleanStd      *clean = new MImgCleanStd;
@@ -193,7 +196,16 @@
     MHillasSrcCalc    *scalc = new MHillasSrcCalc;
 
+    MFilter *f1=new MFDataMember("MRawRunHeader.fRunType", '>', 255.5);
+    MFilter *f2=new MFDataMember("MRawRunHeader.fRunType", '<', 255.5);
+
+    ncalc->SetFilter(f1);
+    nanal->SetFilter(f2);
+
+    tlist->AddToList(f1);
+    tlist->AddToList(f2);
     tlist->AddToList(pcopy);
     tlist->AddToList(pdnsb);
     tlist->AddToList(ncalc);
+    tlist->AddToList(nanal);
     tlist->AddToList(fill1);
     tlist->AddToList(clean);
Index: trunk/MagicSoft/Mars/mmain/Makefile
===================================================================
--- trunk/MagicSoft/Mars/mmain/Makefile	(revision 2512)
+++ trunk/MagicSoft/Mars/mmain/Makefile	(revision 2521)
@@ -24,5 +24,5 @@
 INCLUDES = -I. -I../mbase -I../manalysis -I../mdatacheck -I../mraw       \
 	   -I../mgui -I../mgeom -I../mhist -I../mmontecarlo -I../mfileio \
-           -I../mimage -I../mhistmc -I../mgbase
+           -I../mimage -I../mhistmc -I../mgbase -I../mfilter -I../mdata
 
 #------------------------------------------------------------------------------
