Index: /trunk/BNC/combination/bnccomb.cpp
===================================================================
--- /trunk/BNC/combination/bnccomb.cpp	(revision 2920)
+++ /trunk/BNC/combination/bnccomb.cpp	(revision 2921)
@@ -15,5 +15,5 @@
  * -----------------------------------------------------------------------*/
 
-#include <iostream>
+#include <iomanip>
 
 #include "bnccomb.h"
@@ -158,9 +158,14 @@
 ////////////////////////////////////////////////////////////////////////////
 void bncComb::processSingleCorr(const cmbAC* AC, const t_corr* corr) {
-  cout << AC->name.toAscii().data() << " " 
-       << AC->mountPoint.toAscii().data() << " "
-       << corr->prn.toAscii().data() << " "
-       << corr->tt.datestr() << " " << corr->tt.timestr() << " "
-       << corr->iod << " " << corr->dClk << endl;
+  cout.setf(ios::fixed);
+  cout << AC->name.toAscii().data()                           << " " 
+       << AC->mountPoint.toAscii().data()                     << " "
+       << corr->prn.toAscii().data()                          << " "
+       << corr->tt.timestr()                                  << " "
+       << setw(4) << corr->iod                                << " " 
+       << setw(8) << setprecision(4) << corr->dClk * t_CST::c << "   "
+       << setw(8) << setprecision(4) << corr->rao[0]          << " "
+       << setw(8) << setprecision(4) << corr->rao[1]          << " "
+       << setw(8) << setprecision(4) << corr->rao[2]          << endl;
 }
 
