Index: /trunk/BNS/bns.cpp
===================================================================
--- /trunk/BNS/bns.cpp	(revision 798)
+++ /trunk/BNS/bns.cpp	(revision 799)
@@ -18,4 +18,5 @@
 
 #include "bns.h" 
+#include "bnsutils.h" 
 
 using namespace std;
@@ -232,5 +233,10 @@
   gpsEph*    ep   = pair->eph;
 
-  cout << "PRN, CLK " << prn.toAscii().data() << " "
-       << ep->clock_bias << " " << xx(4) << endl;
-}
+  ColumnVector xB(4);
+
+  satellitePosition(GPSweeks, ep, xB(1), xB(2), xB(3), xB(4));
+
+  cout << GPSweek << " " << GPSweeks << " " 
+       << xx(1) << " " << xx(2) << " " << xx(3) << " " <<  xx(4) << " "
+       << xB(1) << " " << xB(2) << " " << xB(3) << " " <<  xB(4) << endl;
+}
Index: /trunk/BNS/bns.h
===================================================================
--- /trunk/BNS/bns.h	(revision 798)
+++ /trunk/BNS/bns.h	(revision 799)
@@ -46,5 +46,5 @@
   void openCaster();
   void readEpoch();
-  void processSatellite(int mjd, double sec, const QString& prn, 
+  void processSatellite(int GPSweek, double GPSweeks, const QString& prn, 
                         const ColumnVector& xx);
 
