Changeset 5141


Ignore:
Timestamp:
09/28/04 10:50:04 (20 years ago)
Author:
reyes
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5140 r5141  
    1919
    2020                                                 -*-*- END OF LINE -*-*-
     21
     22 2004/09/28: Raquel de los Reyes
     23
     24   * mbase/MRunIter.cc
     25     - Changes in the AddRun function to read the old and the new DAQ
     26       numbering format. Changes took place between runs 35487 and
     27       00035488 (2004_08_30)
     28
    2129 2004/09/27: Abelardo Moralejo
    2230
  • 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.