Changeset 9881 for trunk/Mars/mjobs


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.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.