Changeset 7707 for trunk/MagicSoft/Cosy/tcpip
- Timestamp:
- 05/09/06 14:18:19 (19 years ago)
- Location:
- trunk/MagicSoft/Cosy/tcpip
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc
r7338 r7707 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, Double_t x, Double_t y)222 bool MDriveCom::SendStargReport(UInt_t stat, ZdAz miss, ZdAz nompos, Ring center, Int_t num, Int_t n, Double_t bright, Double_t mjd, Double_t x, Double_t y) 223 223 { 224 224 // miss [deg] … … 247 247 str += txt.Print("%05.1f ", center.GetX()); //number 248 248 str += txt.Print("%05.1f ", center.GetY()); //number 249 str += txt.Print("%04d ", n); //number 249 str += txt.Print("%04d ", n); //number of correleated stars 250 250 str += txt.Print("%03.1f ", bright); 251 251 str += txt.Print("%12.6f ", t.GetMjd()); // mjd 252 252 str += txt.Print("%.1f ", x); 253 253 str += txt.Print("%.1f ", y); 254 str += txt.Print("%04d ", num); //number of detected stars 254 255 255 256 return Send("STARG-REPORT", str, kTRUE); 256 257 } 258 259 260 261 262 257 } -
trunk/MagicSoft/Cosy/tcpip/MDriveCom.h
r7338 r7707 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, Double_t x, Double_t y);43 bool SendStargReport(UInt_t stat, ZdAz miss, ZdAz nompos, Ring center, Int_t num, 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.