Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 2422)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 2423)
@@ -191,4 +191,50 @@
      - returned to revision 1.9 (I had committed by mistake a private 
        version of the macro, sorry!)
+
+
+
+  2003/10/04: Thomas Bretz
+
+   * macros/MagicHillas.C, macros/pedestalvstime.C, macros/pixfirerate.C,
+     macros/pixsatrate.C, macros/readCT1.C, macros/readMagic.C,
+     macros/starplot.C, macros/status.C, macros/sumevents.C,
+     macros/sumeventserr.C, macros/sumeventsrms.C, macros/sumpedestalrms.C,
+     macros/sumpedestals.C, mmain/MDataCheck.cc:
+     - added MGeomApply
+     
+   * manalysis/AnalysisLinkDef.h, manalysis/Makefile:
+     - added MGeomApply
+
+   * manalysis/MBlindPixelCalc.cc:
+     - for buid-in pixel numbers added a check whether the geometry
+       is mathcing
+       
+   * manalysis/MCerPhotCalc.cc, manalysis/MMcPedestalCopy.cc, 
+     manalysis/MMcPedestalNSBAdd.cc, meventdisp/MGCamDisplay.[h,cc],
+     meventdisp/MGEvtDisplay.[h,cc], mhist/MHFadcCam.cc:
+     - fixed that it can deal with variable size arrays
+
+   * manalysis/MGeomApply.[h,cc]:
+     - added. This task will take care of different geometries
+
+   * manalysis/MPedestalCam.cc:
+     - initialize array with size 1
+     - do not call new operator
+     
+   * mbase/MArgs.cc, mbase/MDirIter.cc:
+     - added comments
+     
+   * mdatacheck/MGDisplayAdc.cc:
+     - fixed a small bug in setting slider position for different geometries
+     
+   * mfileio/MWriteRootFile.cc:
+     - automatically append '.root' to file name
+     
+   * mhist/MHCamera.cc:
+     - added Init function
+     - moved parts of the construtor to Init function
+     - added default constructor
+     - added possibility to change geometry after creation by SetGeometry
+     - added many sanity checks (fNcells<=1)
 
 
Index: /trunk/MagicSoft/Mars/macros/star.C
===================================================================
--- /trunk/MagicSoft/Mars/macros/star.C	(revision 2422)
+++ /trunk/MagicSoft/Mars/macros/star.C	(revision 2423)
@@ -52,11 +52,4 @@
 
     //
-    // The geometry container must be created by yourself to make sure
-    // that you don't choose a wrong geometry by mistake
-    //
-    MGeomCamMagic geomcam;
-    plist.AddToList(&geomcam);
-
-    //
     // Now setup the tasks and tasklist:
     // ---------------------------------
@@ -66,6 +59,7 @@
 
     // ------------- user change -----------------
-    read.AddFile("magictest/test/Gamma_z*.root");
+    read.AddFile("~/MC/test_sample/Gamma_zbin0_0_*.root");
 
+    MGeomApply        apply;
     MMcPedestalCopy   pcopy;
     MMcPedestalNSBAdd pnsb;
@@ -93,4 +87,5 @@
 
     tlist.AddToList(&read);
+    tlist.AddToList(&apply);
     tlist.AddToList(&pcopy);
     tlist.AddToList(&pnsb);
