- Timestamp:
- 03/21/05 09:51:13 (20 years ago)
- Location:
- trunk/MagicSoft/Cosy
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/Changelog
r6841 r6867 1 1 -*-*- 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 2 10 3 11 2005/03/17 - Thomas Bretz -
trunk/MagicSoft/Cosy/catalog/StarCatalog.h
r4865 r6867 56 56 void PaintImg(unsigned char *buf, int w, int h); 57 57 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; } 61 61 62 62 void SetPixSize(const double pixsize); -
trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc
r6841 r6867 223 223 { 224 224 // miss [deg] 225 // nompos [ rad]225 // nompos [deg] 226 226 const MTime t(-1); 227 227 228 miss *= 60; // [arcmin] 229 nompos *= kRad2Deg; // [deg] 228 miss *= 60; // [arcmin] 230 229 231 230 // Set status flag … … 249 248 str += txt.Print("%05.1f ", center.GetY()); //number 250 249 str += txt.Print("%04d ", n); //number 251 str += txt.Print("%03.1f ", bright);252 str += txt.Print("%12.6f 250 str += txt.Print("%03.1f ", bright); 251 str += txt.Print("%12.6f", t.GetMjd()); // mjd 253 252 254 253 return Send("STARG-REPORT", str, kTRUE);
Note:
See TracChangeset
for help on using the changeset viewer.