Ignore:
Timestamp:
09/22/05 14:06:38 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r7202 r7364  
    129129    str = str.Strip(TString::kBoth);
    130130
     131    if (ver >= 200508290)
     132    {
     133        // For the momment this are only placeholders....
     134        Float_t dx, dy;
     135        n=sscanf(str.Data(), "%f %f %n", &dx, &dy, &len);
     136        if (n!=2)
     137        {
     138            *fLog << warn << "WARNING - Not enough arguments." << endl;
     139            return kCONTINUE;
     140        }
     141
     142        str.Remove(0, len);
     143        str = str.Strip(TString::kBoth);
     144    }
     145
    131146    return str.IsNull() ? kTRUE : kCONTINUE;
     147
    132148}
    133149
Note: See TracChangeset for help on using the changeset viewer.