Ignore:
Timestamp:
02/09/06 10:35:38 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mreport
Files:
3 edited

Legend:

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

    r7208 r7487  
    143143        ver=200502240;
    144144
     145    if (ver==200508290 && GetMjd()>53643.5)
     146        ver=200509300;
     147
    145148    // Interprete body (contents) of report
    146149    const Int_t rc = InterpreteBody(str, ver);
  • trunk/MagicSoft/Mars/mreport/MReportCC.cc

    r7447 r7487  
    244244        return kCONTINUE;
    245245
    246     if (ver>200510250)
     246    if (ver>=200510250)
    247247        if (!InterpreteRecTemp(str))
    248248            return kCONTINUE;
  • trunk/MagicSoft/Mars/mreport/MReportStarguider.cc

    r7364 r7487  
    9999    str = str.Strip(TString::kBoth);
    100100
    101     if (ver < 200503170)
     101    if (ver<200503170)
    102102    {
    103103        // Fix a problem with the units
     
    110110    MAstro::String2Angle(str, fNominalAz);   // Nom Az
    111111
    112     if (ver < 200503220)
     112    if (ver<200503220)
    113113    {
    114114        // Until a fix in the software the written position was nonsense
     
    129129    str = str.Strip(TString::kBoth);
    130130
    131     if (ver >= 200508290)
    132     {
     131    // Seems that hasn't yet been implemented
     132    if (ver>=200508290 && ver<200509300)
     133    {         
    133134        // For the momment this are only placeholders....
    134135        Float_t dx, dy;
Note: See TracChangeset for help on using the changeset viewer.