Ignore:
Timestamp:
04/08/05 18:37:37 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mreport
Files:
2 edited

Legend:

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

    r6920 r6922  
    3636// Class Version 1:
    3737// ----------------
    38 //  + Double_t fDevAz;          // [deg]   azimuth mispointing
    39 //  + Double_t fDevZd;          // [deg]   zenith  mispointing
     38//  + Double_t fDevAz;          // [arcmin]   azimuth mispointing
     39//  + Double_t fDevZd;          // [arcmin]   zenith  mispointing
    4040//
    4141//
     
    9595
    9696    if (ver < 200503170)
     97    {
     98        // Fix a problem with the units
     99        fDevAz *= 60./TMath::RadToDeg();
     100        fDevZd *= 60./TMath::RadToDeg();
    97101        return str.IsNull() ? kTRUE : kCONTINUE;
     102    }
    98103
    99104    MAstro::String2Angle(str, fNominalZd);   // Nom Zd
    100105    MAstro::String2Angle(str, fNominalAz);   // Nom Az
     106
     107    if (ver < 999999999)
     108    {
     109        // Until a fix in the software the written position was nonsense
     110        fNominalZd = 0;
     111        fNominalAz = 0;
     112    }
    101113
    102114    n=sscanf(str.Data(), "%f %f %d %lf %lf %n",
  • trunk/MagicSoft/Mars/mreport/MReportStarguider.h

    r6921 r6922  
    99{
    1010private:
    11     Double_t fDevAz;              // [deg]  azimuth mispointing
    12     Double_t fDevZd;              // [deg]  zenith  mispointing
     11    Double_t fDevAz;              // [arcmin] azimuth mispointing
     12    Double_t fDevZd;              // [arcmin] zenith  mispointing
    1313
    1414    Double_t fNominalZd;          // [deg] Nominal zenith distance
Note: See TracChangeset for help on using the changeset viewer.