Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 4187)
+++ trunk/MagicSoft/Mars/Changelog	(revision 4188)
@@ -18,4 +18,16 @@
 
                                                  -*-*- END OF LINE -*-*-
+
+ 2004/05/26: Javier Rico
+
+   * mbase/MDirIter.h
+     - Add method to reset the internal TIter iterator 
+
+   * mjobs/MJCalibration.cc
+     - In FindColorReset method, reset the file iterator before looping
+
+   * mimage/MNewImagepar.cc
+     - Add output lines in Print(const MGeomCam &geom) method for 
+       fInnerLeakage1, fInnerLeakage2 and fInnerSize
 
  2004/05/25: Raquel de los Reyes and Thomas Bretz
Index: trunk/MagicSoft/Mars/mbase/MDirIter.h
===================================================================
--- trunk/MagicSoft/Mars/mbase/MDirIter.h	(revision 4187)
+++ trunk/MagicSoft/Mars/mbase/MDirIter.h	(revision 4188)
@@ -54,4 +54,5 @@
         fNext.Reset();
     }
+    void ResetIter() {fNext.Reset();}
 
     TString Next(Bool_t nocheck=kFALSE);
Index: trunk/MagicSoft/Mars/mimage/MNewImagePar.cc
===================================================================
--- trunk/MagicSoft/Mars/mimage/MNewImagePar.cc	(revision 4187)
+++ trunk/MagicSoft/Mars/mimage/MNewImagePar.cc	(revision 4188)
@@ -254,4 +254,7 @@
     *fLog << " - Leakage1       [1]   = " << fLeakage1             << endl;
     *fLog << " - Leakage2       [1]   = " << fLeakage2             << endl;
+    *fLog << " - InnerLeakage1  [1]   = " << fInnerLeakage1        << endl;
+    *fLog << " - InnerLeakage2  [1]   = " << fInnerLeakage2        << endl;
+    *fLog << " - InnerSize      [#]   = " << fInnerSize            << " CerPhot" << endl;
     *fLog << " - Conc           [1]   = " << fConc                 << " (ratio)" << endl;
     *fLog << " - Conc1          [1]   = " << fConc1                << " (ratio)" << endl;
Index: trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
===================================================================
--- trunk/MagicSoft/Mars/mjobs/MJCalibration.cc	(revision 4187)
+++ trunk/MagicSoft/Mars/mjobs/MJCalibration.cc	(revision 4188)
@@ -703,4 +703,5 @@
   
   TString filenames;
+  ((MDirIter*)fRuns)->ResetIter();
 
   while (!(filenames=((MDirIter*)fRuns)->Next()).IsNull())
