Changeset 9881 for trunk/Mars


Ignore:
Timestamp:
08/19/10 11:52:14 (14 years ago)
Author:
tbretz
Message:
FIxed the treatement of files with file number 0 in MSequence.
Location:
trunk/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/Changelog

    r9878 r9881  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20
     21 2010/08/19 Thomas Bretz
     22
     23   * mjobs/MSequence.cc:
     24     - fixed treatment of file number 0 in InflateFileName and
     25       PrintRuns
     26
     27
    2028
    2129 2010/08/17 Thomas Bretz
  • trunk/Mars/mjobs/MSequence.cc

    r9607 r9881  
    498498    {
    499499        n += MString::Format("%08d", -run);
    500         if (file>0)
     500        if (file>=0)
    501501            n += MString::Format(".%03d", file);
    502502    }
     
    13001300        {
    13011301            out << " " << r[pos];
    1302             if (f[pos]>0)
     1302            if (f[pos]>=0)
    13031303                out << "." << f[pos];
    13041304        }
     
    13141314            {
    13151315                out << " " << r[pos] << ".";
    1316                 if (f[pos]!=0)
     1316                if (f[pos]>=0)
    13171317                    out << f[pos];
    13181318                out << ":" << f[pos+n-1];
Note: See TracChangeset for help on using the changeset viewer.