Ignore:
Timestamp:
04/24/01 11:22:42 (24 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MReadTree.cc

    r760 r768  
    6363//
    6464MReadTree::MReadTree(const char *tname, const char *fname,
    65                      const char *name, const char *title)
     65                     const char *name, const char *title) : fNumEntry(0)
    6666{
    6767    *fName  = name  ? name  : "MReadTree";
     
    131131
    132132    //
    133     // set pointer to first event
    134     //
    135     fNumEntry   = 0;
    136 
    137     //
    138133    // output logging information
    139134    //
     
    200195    // check for end of file
    201196    //
    202     if (fNumEntry==fNumEntries)
     197    if (fNumEntry>=fNumEntries)
    203198        return kFALSE;
    204199
     
    272267// this function makes Process() read event number nr next
    273268//
     269// Remark: You can use this function to set the event number from which
     270//         you want to start reading.
     271//
    274272Bool_t MReadTree::SetEventNum(UInt_t nr)
    275273{
Note: See TracChangeset for help on using the changeset viewer.