Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 3008)
+++ trunk/MagicSoft/Mars/Changelog	(revision 3009)
@@ -4,15 +4,21 @@
 
                                                  -*-*- END OF LINE -*-*-
+ 2004/02/03: Thomas Bretz
+
+   * mfileio/MReadTree.cc:
+     - fixed handling of -1 entries in AddFile: root 3.10/02 crashed
+
+
 
  2004/02/02: Markus Gaug
 
   * manalysis/MPedCalcPedRun.cc
-    - corrected formulae in Class descriptino
-
-  * mcalib/MCalibration.*
-  * mcalib/MHCalibration.*
-  * manalysis/MMcCalibrationUpdate.cc
+    - corrected formulae in Class description
+
+  * mcalib/MCalibration.[h,cc], mcalib/MHCalibration.[h,cc],
+    manalysis/MMcCalibrationUpdate.cc:
     - calculate relative times and absolute times. Fit only 
       the relative ones. 
+
 
 
@@ -28,4 +34,6 @@
    * NEWS
      - updated.
+
+
 
  2004/02/02: Thomas Bretz
Index: trunk/MagicSoft/Mars/mfileio/MReadTree.cc
===================================================================
--- trunk/MagicSoft/Mars/mfileio/MReadTree.cc	(revision 3008)
+++ trunk/MagicSoft/Mars/mfileio/MReadTree.cc	(revision 3009)
@@ -308,5 +308,5 @@
     // FIXME! A check is missing whether the file already exists or not.
     //
-    const Int_t numfiles = fChain->Add(fname, entries);
+    const Int_t numfiles = fChain->Add(fname, entries<0?TChain::kBigNumber:entries);
 
     if (numfiles>0)
