Changeset 8002 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
10/02/06 10:02:51 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8001 r8002  
    2222   * callisto.rc, callisto_Dec04Jan05.rc:
    2323     - 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
    2437
    2538
  • trunk/MagicSoft/Mars/mreport/MReport.cc

    r7726 r8002  
    7979    }
    8080
     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
    8189    fState=state;
    8290    if (!fTime->Set(yea, mon, day, hor, min, sec, ms))
    8391    {
    84         *fLog << err << "ERROR - Event has invalid time: ";
     92        *fLog << err << "ERROR - Event " << fIdentifier << " has invalid time ";
    8593        *fLog << Form("%d.%d.%d %02d:%02d:%02d.%03d", day, mon, yea, hor, min, sec, ms);
    8694        *fLog << "... abort." << endl;
Note: See TracChangeset for help on using the changeset viewer.