Changeset 6867 for trunk


Ignore:
Timestamp:
03/21/05 09:51:13 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Cosy
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/Changelog

    r6841 r6867  
    11                                                                  -*-*- END -*-*-
     2
     3 2005/03/21 - Thomas Bretz
     4
     5   * tcpip/MDriveCom.[h,cc]:
     6     - added a missing white space behind the brightness and
     7       fixed the wrong units of Zd/Az in the starguider report
     8
     9
    210
    311 2005/03/17 - Thomas Bretz
  • trunk/MagicSoft/Cosy/catalog/StarCatalog.h

    r4865 r6867  
    5656    void PaintImg(unsigned char *buf, int w, int h);
    5757
    58     const AltAz GetAltAz() const { return fAltAz*kRad2Deg; }
    59     const ZdAz  GetZdAz() const  { return ZdAz(kPiDiv2-fAltAz.Alt(), fAltAz.Az())*kRad2Deg; }
    60     const RaDec GetRaDec() const { return fRaDec*kRad2Deg; }
     58    const AltAz GetAltAz() const /*[deg]*/ { return fAltAz*kRad2Deg; }
     59    const ZdAz  GetZdAz() const  /*[deg]*/ { return ZdAz(kPiDiv2-fAltAz.Alt(), fAltAz.Az())*kRad2Deg; }
     60    const RaDec GetRaDec() const /*[deg]*/ { return fRaDec*kRad2Deg; }
    6161
    6262    void  SetPixSize(const double pixsize);
  • trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc

    r6841 r6867  
    223223{
    224224    // miss   [deg]
    225     // nompos [rad]
     225    // nompos [deg]
    226226    const MTime t(-1);
    227227
    228     miss   *= 60;        // [arcmin]
    229     nompos *= kRad2Deg;  // [deg]
     228    miss *= 60;        // [arcmin]
    230229
    231230    // Set status flag
     
    249248    str += txt.Print("%05.1f ",   center.GetY()); //number
    250249    str += txt.Print("%04d ",   n);               //number
    251     str += txt.Print("%03.1f",  bright);
    252     str += txt.Print("%12.6f ", t.GetMjd());      // mjd
     250    str += txt.Print("%03.1f ",  bright);
     251    str += txt.Print("%12.6f", t.GetMjd());      // mjd
    253252   
    254253    return Send("STARG-REPORT", str, kTRUE);
Note: See TracChangeset for help on using the changeset viewer.