- Timestamp:
- Nov 24, 2014, 1:17:32 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/combination/bnccomb.cpp
r6174 r6330 624 624 << " Maximum Residuum " << maxRes << ' ' 625 625 << corrs()[maxResIndex-1]->_acName << ' ' << corrs()[maxResIndex-1]->_prn; 626 627 626 if (maxRes > _MAXRES) { 628 627 for (int iPar = 1; iPar <= _params.size(); iPar++) { … … 643 642 else { 644 643 out << " OK" << endl; 644 out.setRealNumberNotation(QTextStream::FixedNotation); 645 out.setRealNumberPrecision(4); 646 for (int ii = 0; ii < corrs().size(); ii++) { 647 const cmbCorr* corr = corrs()[ii]; 648 out << _resTime.datestr().c_str() << ' ' 649 << _resTime.timestr().c_str() << " " 650 << corr->_acName << ' ' << corr->_prn; 651 out.setFieldWidth(10); 652 out << " res = " << vv[ii] << endl; 653 out.setFieldWidth(0); 654 } 645 655 break; 646 656 } … … 1018 1028 << corr->_acName << ' ' << corr->_prn; 1019 1029 out.setFieldWidth(6); 1020 out << " dClk = " << corr->_dClkResult * t_CST::c << "res = " << vv[ii] << endl;1030 out << " res = " << vv[ii] << endl; 1021 1031 out.setFieldWidth(0); 1022 1032 }
Note:
See TracChangeset
for help on using the changeset viewer.