Index: trunk/MagicSoft/Mars/macros/readMagic.C
===================================================================
--- trunk/MagicSoft/Mars/macros/readMagic.C	(revision 1524)
+++ trunk/MagicSoft/Mars/macros/readMagic.C	(revision 1540)
@@ -46,10 +46,10 @@
 }
 
-void readMagic(const char *fname="~/data/camera.root")
+void readMagic(const char *fname="~/data/Gamma_0_7*.root")
 {
     MParList plist;
 
     MGeomCamMagic geomcam;
-    MHillas       hillas;
+    MHillasExt    hillas;
     MTaskList     tlist;
 
@@ -59,21 +59,25 @@
 
     MReadMarsFile     read("Events", fname);
+    read.DisableAutoScheme();
 
+    MPrint            print("MMcEvt");
     MMcPedestalCopy   pcopy;
     MMcPedestalNSBAdd pnsb;
     MCerPhotCalc      ncalc;
+    MBlindPixelCalc   blind;
+    blind.SetUseInterpolation();
     MClone            clone("MCerPhotEvt");
     MImgCleanStd      clean;
-    MBlindPixelCalc   blind;
     MHillasCalc       hcalc;
 
 
     tlist.AddToList(&read);
+    tlist.AddToList(&print);
     tlist.AddToList(&pcopy);
     tlist.AddToList(&pnsb);
     tlist.AddToList(&ncalc);
+    tlist.AddToList(&blind);
     tlist.AddToList(&clone);
     tlist.AddToList(&clean);
-    tlist.AddToList(&blind);
     tlist.AddToList(&hcalc);
 
