Changeset 3009


Ignore:
Timestamp:
02/03/04 14:36:09 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3007 r3009  
    44
    55                                                 -*-*- END OF LINE -*-*-
     6 2004/02/03: Thomas Bretz
     7
     8   * mfileio/MReadTree.cc:
     9     - fixed handling of -1 entries in AddFile: root 3.10/02 crashed
     10
     11
    612
    713 2004/02/02: Markus Gaug
    814
    915  * manalysis/MPedCalcPedRun.cc
    10     - corrected formulae in Class descriptino
    11 
    12   * mcalib/MCalibration.*
    13   * mcalib/MHCalibration.*
    14   * manalysis/MMcCalibrationUpdate.cc
     16    - corrected formulae in Class description
     17
     18  * mcalib/MCalibration.[h,cc], mcalib/MHCalibration.[h,cc],
     19    manalysis/MMcCalibrationUpdate.cc:
    1520    - calculate relative times and absolute times. Fit only
    1621      the relative ones.
     22
    1723
    1824
     
    2834   * NEWS
    2935     - updated.
     36
     37
    3038
    3139 2004/02/02: Thomas Bretz
  • trunk/MagicSoft/Mars/mfileio/MReadTree.cc

    r2607 r3009  
    308308    // FIXME! A check is missing whether the file already exists or not.
    309309    //
    310     const Int_t numfiles = fChain->Add(fname, entries);
     310    const Int_t numfiles = fChain->Add(fname, entries<0?TChain::kBigNumber:entries);
    311311
    312312    if (numfiles>0)
Note: See TracChangeset for help on using the changeset viewer.