Ignore:
Timestamp:
05/09/06 14:18:19 (18 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc

    r7338 r7707  
    220220}
    221221
    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)
     222bool 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)
    223223{
    224224    // miss   [deg]
     
    247247    str += txt.Print("%05.1f ",   center.GetX()); //number
    248248    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
    250250    str += txt.Print("%03.1f ",  bright);
    251251    str += txt.Print("%12.6f ", t.GetMjd());      // mjd
    252252    str += txt.Print("%.1f ", x);
    253253    str += txt.Print("%.1f ", y);
     254    str += txt.Print("%04d ", num);               //number of detected stars
    254255
    255256    return Send("STARG-REPORT", str, kTRUE);
    256 
    257 }
    258 
    259 
    260 
    261 
    262 
     257}
Note: See TracChangeset for help on using the changeset viewer.