Ignore:
Timestamp:
08/01/03 14:44:13 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mfileio
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mfileio/MRead.cc

    r2296 r2298  
    5252}
    5353
     54Int_t MRead::AddFiles(MDirIter &files)
     55{
     56    files.Reset();
     57
     58    Int_t rc = 0;
     59
     60    TString str;
     61    while (!(str=files.Next()).IsNull())
     62    {
     63        const Int_t num = AddFile(str);
     64        if (num<0)
     65            *fLog << warn << "Warning: AddFile(\"" << str << "\") returned " << num << "... skipped." << endl;
     66        else
     67            rc += num;
     68    }
     69
     70    return rc;
     71}
     72
    5473// --------------------------------------------------------------------------
    5574//
     
    100119    return i!=0;
    101120}
    102 
    103 Int_t MRead::AddFiles(MDirIter &next)
    104 {
    105     Int_t rc=0;
    106     TString n;
    107     while (!(n=next()).IsNull())
    108     {
    109         const Int_t num = AddFile(n);
    110         if (num>0)
    111             rc += num;
    112     }
    113     return rc;
    114 }
    115 
  • trunk/MagicSoft/Mars/mfileio/MRead.h

    r2296 r2298  
    2424
    2525    virtual Int_t AddFile(const char *fname, Int_t entries=-1) { return -1; }
    26     Int_t AddFiles(MDirIter &next);
     26    Int_t AddFiles(MDirIter &dir);
    2727
    2828    Bool_t ReadEnv(const TEnv &env, TString prefix, Bool_t print);
Note: See TracChangeset for help on using the changeset viewer.