Changeset 5141 for trunk/MagicSoft
- Timestamp:
- 09/28/04 10:50:04 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5140 r5141 19 19 20 20 -*-*- 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 21 29 2004/09/27: Abelardo Moralejo 22 30 -
trunk/MagicSoft/Mars/mbase/MRunIter.cc
r3966 r5141 52 52 p = "."; 53 53 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); 55 63 56 64 const TString name(Next());
Note:
See TracChangeset
for help on using the changeset viewer.