Changeset 8885 for trunk/MagicSoft/Mars
- Timestamp:
- 04/08/08 10:09:38 (17 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8883 r8885 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2008/04/08 Thomas Bretz 22 23 * mreport/MReportDrive.cc: 24 - implemented changes of Version 20080220 25 26 20 27 21 28 2008/03/18 Thomas Bretz -
trunk/MagicSoft/Mars/NEWS
r8788 r8885 33 33 34 34 * added code to process the sum-trigger flag 35 36 ;merpp 37 38 * Implemented cc file version 2008-20-02/0 35 39 36 40 ;callisto -
trunk/MagicSoft/Mars/mreport/MReportDrive.cc
r7202 r8885 119 119 120 120 str.Remove(0, len); 121 str = str.Strip(TString::kBoth); 121 122 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 } 123 136 124 137 return str.IsNull() ? kTRUE : kCONTINUE;
Note:
See TracChangeset
for help on using the changeset viewer.