Changeset 8885 for trunk/MagicSoft


Ignore:
Timestamp:
04/08/08 10:09:38 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8883 r8885  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20
     21 2008/04/08 Thomas Bretz
     22
     23   * mreport/MReportDrive.cc:
     24     - implemented changes of Version 20080220
     25
     26
    2027
    2128 2008/03/18 Thomas Bretz
  • trunk/MagicSoft/Mars/NEWS

    r8788 r8885  
    3333
    3434   * added code to process the sum-trigger flag
     35
     36 ;merpp
     37
     38   * Implemented cc file version 2008-20-02/0
    3539
    3640 ;callisto
  • trunk/MagicSoft/Mars/mreport/MReportDrive.cc

    r7202 r8885  
    119119
    120120    str.Remove(0, len);
     121    str = str.Strip(TString::kBoth);
    121122
    122     str = str.Strip(TString::kBoth);
     123    if (ver>=200802200)
     124    {
     125        Int_t dummy; // Cosy armed or not
     126        n=sscanf(str.Data(), "%d %n", &dummy, &len);
     127        if (n!=1)
     128        {
     129            *fLog << warn << "WARNING - Not enough arguments." << endl;
     130            return kCONTINUE;
     131        }
     132
     133        str.Remove(0, len);
     134        str = str.Strip(TString::kBoth);
     135    }
    123136
    124137    return str.IsNull() ? kTRUE : kCONTINUE;
Note: See TracChangeset for help on using the changeset viewer.