Changeset 8002 for trunk/MagicSoft/Mars
- Timestamp:
- 10/02/06 10:02:51 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8001 r8002 22 22 * callisto.rc, callisto_Dec04Jan05.rc: 23 23 - fixed some names of some resources (all commented out anyhow) 24 25 * mdata/MDataElement.cc: 26 - if the column given is the constructor is negative the 27 name of the matrix is supposed to contain also the column index 28 29 * mhcalib/MHCalibrationRelTimeCam.[h,cc]: 30 - improved the output in case of under- and overflows 31 - added const-qualifier to CheckOverflow 32 33 * mreport/MReport.cc: 34 - allow the milliseconds to be 1000 (this is a bug which affects the 35 reports invery rare cases) 36 - improved output 24 37 25 38 -
trunk/MagicSoft/Mars/mreport/MReport.cc
r7726 r8002 79 79 } 80 80 81 if (ms==1000) 82 { 83 *fLog << warn << "WARNING - Milliseconds in timestamp of " << fIdentifier; 84 *fLog << Form(" %d.%d.%d %02d:%02d:%02d.%03d", day, mon, yea, hor, min, sec, ms); 85 *fLog << " reset to 999." << endl; 86 ms = 999; 87 } 88 81 89 fState=state; 82 90 if (!fTime->Set(yea, mon, day, hor, min, sec, ms)) 83 91 { 84 *fLog << err << "ERROR - Event has invalid time:";92 *fLog << err << "ERROR - Event " << fIdentifier << " has invalid time "; 85 93 *fLog << Form("%d.%d.%d %02d:%02d:%02d.%03d", day, mon, yea, hor, min, sec, ms); 86 94 *fLog << "... abort." << endl;
Note:
See TracChangeset
for help on using the changeset viewer.