Ignore:
Timestamp:
07/22/05 11:11:26 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r4575 r7208  
    2929//  This is a base class for all reports comming from subsystems stored in
    3030//  a report file.
     31//
     32//
     33// Due to wrong assignment by arehucas the veriosn number for some
     34// cases is replaced.
     35//
     36//   Old Version | MjdMin  | MjdMax  | New Version
     37//  -------------+---------+---------+-------------
     38//   200504130   | 53548.0 | 53567.0 | 200506300
     39//   200503170   | 53446.5 | 53447.5 | 200502240
     40//
    3141//
    3242//  Be carefull: The class name of all classes derived from this class
     
    105115// SetupReading must be called successfully before.
    106116//
     117// Due to wrong assignment by arehucas the veriosn number for some
     118// cases is replaced.
     119//
     120//   Old Version | MjdMin  | MjdMax  | New Version
     121//  -------------+---------+---------+-------------
     122//   200504130   | 53548.0 | 53567.0 | 200506300
     123//   200503170   | 53446.5 | 53447.5 | 200502240
     124//
    107125Int_t MReport::Interprete(TString &str, const MTime &start, const MTime &stop, Int_t ver)
    108126{
     127    // Interprete header (time, status, etc) of report
    109128    if (!InterpreteHeader(str))
    110129        return kFALSE;
     
    116135        return -1;
    117136
     137    // Due to wrong assignment by arehucas the veriosn number for some
     138    // cases is replaced.
     139    if (ver==200504130 && GetMjd()>53548 && GetMjd()<53567)
     140        ver=200506300;
     141
     142    if (ver==200503170 && GetMjd()>53446.5 && GetMjd()<53447.5)
     143        ver=200502240;
     144
     145    // Interprete body (contents) of report
    118146    const Int_t rc = InterpreteBody(str, ver);
    119147    if (rc != kTRUE)
Note: See TracChangeset for help on using the changeset viewer.