Changeset 7487


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

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7486 r7487  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20 2006/02/09 Thomas Bretz
     21
     22   * mreport/MReport.cc:
     23     - invented new fake CC report file version 200509300 for a change
     24       in the starguider format (the already implemented last values
     25       dissapeared again!) which is not noticed in the format version.
     26
     27   * mreport/MReportCC.cc, mreport/MReportStarguider.cc:
     28     - fixed support for ver 200510250
     29
     30
     31
    2032 2006/02/08 Daniela Dorner
    2133
  • 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.