Ignore:
Timestamp:
06/20/09 10:14:33 (15 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mreport/MReportDrive.cc

    r8885 r9462  
    135135    }
    136136
     137    if (ver>=200805170)
     138    {
     139        Int_t dummy; // Starguider switched on or not
     140        n=sscanf(str.Data(), "%d %n", &dummy, &len);
     141        if (n!=1)
     142        {
     143            *fLog << warn << "WARNING - Not enough arguments." << endl;
     144            return kCONTINUE;
     145        }
     146
     147        str.Remove(0, len);
     148        str = str.Strip(TString::kBoth);
     149    }
     150
    137151    return str.IsNull() ? kTRUE : kCONTINUE;
    138152}
Note: See TracChangeset for help on using the changeset viewer.