Index: trunk/MagicSoft/Mars/macros/plot.C
===================================================================
--- trunk/MagicSoft/Mars/macros/plot.C	(revision 1965)
+++ trunk/MagicSoft/Mars/macros/plot.C	(revision 1966)
@@ -23,5 +23,5 @@
 !
 \* ======================================================================== */
-
+#include <MH.h>
 // -------------------------------------------------------------------------
 //
@@ -32,4 +32,7 @@
 void plot()
 {
+    MStatusDisplay *d = new MStatusDisplay;
+    d->SetLogStream(&gLog);
+
     //
     // Create a empty Parameter List and an empty Task List
@@ -48,5 +51,6 @@
     // First Task: Read file with image parameters
     // (created with the star.C macro)
-    MReadMarsFile  read("Events", "star.root");
+    MReadMarsFile  read("Events", "MC_OFF1.root");
+    read.AddFile("MC_ON1.root");
     read.DisableAutoScheme();
     tlist.AddToList(&read);
@@ -64,5 +68,5 @@
     // set the name of the variable to plot and the binning
     //
-    TString var("MHillas.fSize");
+    TString var("Hillas.fSize");
 
     MBinning bins("BinningMH3X");
@@ -99,6 +103,5 @@
     // Execute your analysis
     //
-    MProgressBar bar;
-    evtloop.SetProgressBar(&bar);
+    evtloop.SetDisplay(d);
     if (!evtloop.Eventloop())
         return;
@@ -106,7 +109,11 @@
     tlist.PrintStatistics();
 
-    // Create a default canvas called Plot and set the
+    // Create a pad, check if MStatusDisplay was not closed meanwhile
+    if (evtloop.GetDisplay())
+        d->AddTab("Size");
+    else
+        MH::MakeDefCanvas("Plot");
+
     // x-axis to logarithmic scale
-    MH::MakeDefCanvas("Plot");
     gPad->SetLogx();
 
@@ -114,7 +121,5 @@
     // and draw a copy of both
     h3h.GetHist().SetLineColor(kRed);
-    h3h.GetHist().SetFillStyle(4000);
-    h3g.GetHist().DrawCopy();
-    h3h.GetHist().DrawCopy("same");
+    MH::DrawCopy(h3h.GetHist(), h3g.GetHist(), "Size");
 
     // Now create a new histogram, fill it with the division of the
@@ -124,5 +129,4 @@
     h.Divide(&h3g.GetHist(), &h3h.GetHist());
     h.SetLineColor(kGreen);
-    h.SetFillStyle(4000);
     h.DrawCopy("same");
 }
Index: trunk/MagicSoft/Mars/macros/status.C
===================================================================
--- trunk/MagicSoft/Mars/macros/status.C	(revision 1965)
+++ trunk/MagicSoft/Mars/macros/status.C	(revision 1966)
@@ -80,6 +80,6 @@
 
     // ------------- user change -----------------
-    //read.AddFile("data/Pro*.root");
     read.AddFile("data/Gam*.root");
+    //read.AddFile("200*.root");
 
     MMcPedestalCopy   pcopy;
@@ -93,4 +93,5 @@
     MHillasCalc       hcalc;
     MHillasSrcCalc    scalc; // !!Preliminary!! Will be removed later!
+    MNewImageParCalc  icalc;
 
     // -------------------------------------------
@@ -99,4 +100,5 @@
     MFillH hfill3("MHHillasExtSrc [MHHillasExt]");
     MFillH hfill4("MHHillasSrc","MHillasSrc");
+    MFillH hfill4("MHNewImagePar","MNewImagePar");
     MFillH hfill5("MHStarMap", "MHillas");
     MFillH hfill6("MHCerPhotEvt", "MCerPhotEvt");
@@ -107,9 +109,9 @@
 
     tlist.AddToList(&ncalc);
-
     tlist.AddToList(&blind);
     tlist.AddToList(&clean);
     tlist.AddToList(&hcalc);
     tlist.AddToList(&scalc);
+    tlist.AddToList(&icalc);
     tlist.AddToList(&hfill1);
     tlist.AddToList(&hfill2);
