- Timestamp:
- Nov 26, 2009, 4:09:09 PM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncpppclient.cpp
r2043 r2044 44 44 #include "bncpppclient.h" 45 45 #include "bncutils.h" 46 #include "bncconst.h" 46 47 47 48 extern "C" { … … 157 158 cc->rao.ReSize(3); 158 159 in >> cc->iod >> cc->dClk >> cc->rao[0] >> cc->rao[1] >> cc->rao[2]; 160 cc->dClk /= t_CST::c; 159 161 } 160 162 } … … 195 197 RSW_to_XYZ(xc.Rows(1,3), vv, cc->rao, dx); 196 198 197 199 xc[0] += dx[0]; 200 xc[1] += dx[1]; 201 xc[2] += dx[2]; 202 xc[3] += cc->dClk; 198 203 } 199 204 -
trunk/BNC/bncpppclient.h
r2042 r2044 63 63 class t_corr { 64 64 public: 65 t_time tt;66 int iod;67 double dClk;68 double rao[3];65 t_time tt; 66 int iod; 67 double dClk; 68 ColumnVector rao; 69 69 }; 70 70
Note:
See TracChangeset
for help on using the changeset viewer.