Ignore:
Timestamp:
09/28/04 10:50:04 (20 years ago)
Author:
reyes
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r3966 r5141  
    5252        p = ".";
    5353
    54     MDirIter Next(p, Form("*_%05d_*_%s", run,fIsRawFile?"*.raw":"*.root"), -1);
     54    // R. DeLosReyes and T. Bretz
     55    // Changes to read the DAQ numbering format. Changes takes place
     56    // between runs 35487 and 00035488 (2004_08_30)
     57
     58      MDirIter Next;
     59      if(run<=35487)
     60        Next.AddDirectory(p, Form("*_%05d_*_%s", run,fIsRawFile?"*.raw":"*.root"), -1);
     61      else
     62        Next.AddDirectory(p, Form("*_%08d_*_%s", run,fIsRawFile?"*.raw":"*.root"), -1);
    5563
    5664    const TString name(Next());
Note: See TracChangeset for help on using the changeset viewer.