Index: trunk/BNC/src/satObs.cpp
===================================================================
--- trunk/BNC/src/satObs.cpp	(revision 6175)
+++ trunk/BNC/src/satObs.cpp	(revision 6176)
@@ -1,2 +1,4 @@
+#include <iostream>
+#include <sstream>
 
 #include "satObs.h"
@@ -21,5 +23,8 @@
 ////////////////////////////////////////////////////////////////////////////
 string t_clkCorr::toLine() const {
-  return "CLK";
+  ostringstream str;
+  str.setf(ios::showpoint | ios::fixed);
+  str << "C " << endl;
+  return str.str();
 }
 
@@ -41,5 +46,8 @@
 ////////////////////////////////////////////////////////////////////////////
 string t_orbCorr::toLine() const {
-  return "ORB";
+  ostringstream str;
+  str.setf(ios::showpoint | ios::fixed);
+  str << "O " << endl;
+  return str.str();
 }
 
