Changeset 2921 in ntrip
- Timestamp:
- Jan 27, 2011, 6:35:18 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/combination/bnccomb.cpp
r2920 r2921 15 15 * -----------------------------------------------------------------------*/ 16 16 17 #include <io stream>17 #include <iomanip> 18 18 19 19 #include "bnccomb.h" … … 158 158 //////////////////////////////////////////////////////////////////////////// 159 159 void bncComb::processSingleCorr(const cmbAC* AC, const t_corr* corr) { 160 cout << AC->name.toAscii().data() << " " 161 << AC->mountPoint.toAscii().data() << " " 162 << corr->prn.toAscii().data() << " " 163 << corr->tt.datestr() << " " << corr->tt.timestr() << " " 164 << corr->iod << " " << corr->dClk << endl; 160 cout.setf(ios::fixed); 161 cout << AC->name.toAscii().data() << " " 162 << AC->mountPoint.toAscii().data() << " " 163 << corr->prn.toAscii().data() << " " 164 << corr->tt.timestr() << " " 165 << setw(4) << corr->iod << " " 166 << setw(8) << setprecision(4) << corr->dClk * t_CST::c << " " 167 << setw(8) << setprecision(4) << corr->rao[0] << " " 168 << setw(8) << setprecision(4) << corr->rao[1] << " " 169 << setw(8) << setprecision(4) << corr->rao[2] << endl; 165 170 } 166 171
Note:
See TracChangeset
for help on using the changeset viewer.