Changeset 7338 for trunk/MagicSoft
- Timestamp:
- 08/29/05 16:23:44 (19 years ago)
- Location:
- trunk/MagicSoft/Cosy
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/Changelog
r7313 r7338 1 1 -*-*- END -*-*- 2 2005/08/29 - Daniela Dorner 3 4 * main/MStarguider.cc, tcpip/MDriveCom.[h,cc]: 5 - added to variables to the Starguider report 6 7 2 8 3 9 2005/08/22 - Thomas Bretz -
trunk/MagicSoft/Cosy/main/MStarguider.cc
r7297 r7338 1637 1637 if (fCosy) { 1638 1638 MDriveCom &com = *fCosy->GetDriveCom(); 1639 com.SendStargReport(fStatus, fD, fSao->GetZdAz(), sgcenter, spots.GetEntries(), bright, time.GetMjd() ); // Report1639 com.SendStargReport(fStatus, fD, fSao->GetZdAz(), sgcenter, spots.GetEntries(), bright, time.GetMjd(), 0, 0); // Report 1640 1640 } 1641 1641 -
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.