Changeset 7338 for trunk/MagicSoft/Cosy/tcpip
- Timestamp:
- 08/29/05 16:23:44 (19 years ago)
- Location:
- trunk/MagicSoft/Cosy/tcpip
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc
r6867 r7338 220 220 } 221 221 222 bool MDriveCom::SendStargReport(UInt_t stat, ZdAz miss, ZdAz nompos, Ring center, Int_t n, Double_t bright, Double_t mjd )222 bool MDriveCom::SendStargReport(UInt_t stat, ZdAz miss, ZdAz nompos, Ring center, Int_t n, Double_t bright, Double_t mjd, Double_t x, Double_t y) 223 223 { 224 224 // miss [deg] … … 249 249 str += txt.Print("%04d ", n); //number 250 250 str += txt.Print("%03.1f ", bright); 251 str += txt.Print("%12.6f", t.GetMjd()); // mjd 252 251 str += txt.Print("%12.6f ", t.GetMjd()); // mjd 252 str += txt.Print("%.1f ", x); 253 str += txt.Print("%.1f ", y); 254 253 255 return Send("STARG-REPORT", str, kTRUE); 254 256 -
trunk/MagicSoft/Cosy/tcpip/MDriveCom.h
r6841 r7338 41 41 42 42 bool SendReport(UInt_t stat, RaDec rd, ZdAz so, ZdAz is, ZdAz er); 43 bool SendStargReport(UInt_t stat, ZdAz miss, ZdAz nompos, Ring center, Int_t n, Double_t bright, Double_t mjd );43 bool SendStargReport(UInt_t stat, ZdAz miss, ZdAz nompos, Ring center, Int_t n, Double_t bright, Double_t mjd, Double_t x, Double_t y); 44 44 bool SendStatus(const char *stat); 45 45 };
Note:
See TracChangeset
for help on using the changeset viewer.