Index: trunk/BNC/src/PPP/ephpool.cpp
===================================================================
--- trunk/BNC/src/PPP/ephpool.cpp	(revision 5748)
+++ trunk/BNC/src/PPP/ephpool.cpp	(revision 5749)
@@ -49,5 +49,5 @@
 /////////////////////////////////////////////////////////////////////////////
 void t_ephPool::putEphemeris(t_eph* eph) {
-  if (eph && eph->isOK()) {
+  if (eph && eph->ok()) {
     _satEphPool[eph->prn().toInt()].putEphemeris(_maxQueueSize, eph);
   }
@@ -119,5 +119,5 @@
   for (unsigned ii = 0; ii < _ephs.size(); ii++) {
     t_eph* eph = _ephs[ii];
-    if (eph->IOD() == corr->IOD() || corr->absClk()) {
+    if (eph->IOD() == corr->IOD()) {
       eph->setClkCorr(corr); 
     }
@@ -133,7 +133,7 @@
     t_eph* eph = _ephs[ii];
     t_irc irc = eph->getCrd(tt, xc, vv);
-    if (irc == t_irc::success) {
-      if (eph->prn().system() == 'R') {
-        double age = tt - eph->toc();
+    if (irc == success) {
+      if (eph->system() == 'R') {
+        double age = tt - eph->TOC();
         if (fabs(age) > 3600.0) {
           continue;
@@ -143,5 +143,5 @@
     }
   }
-  return t_irc::failure;
+  return failure;
 }
 
@@ -150,5 +150,5 @@
 int t_ephPool::t_satEphPool::getChannel() const {
   if (_ephs.size() > 0) {
-    return _ephs[0]->getChannel();
+    return _ephs[0]->slotNum();
   }
   return 0;
Index: trunk/BNC/src/PPP/ppp.h
===================================================================
--- trunk/BNC/src/PPP/ppp.h	(revision 5748)
+++ trunk/BNC/src/PPP/ppp.h	(revision 5749)
@@ -54,4 +54,6 @@
 class t_orbCorr {
  public:
+  t_prn          prn() const {return _prn;}
+  unsigned short IOD() const {return _iod;}
   t_prn          _prn;
   unsigned short _iod;
@@ -64,8 +66,9 @@
 class t_clkCorr {
  public:
+  t_prn          prn() const {return _prn;}
+  unsigned short IOD() const {return _iod;}
   t_prn          _prn;
   unsigned short _iod;
   bncTime        _time;
-  bool           _absClk;
   double         _dClk;
   double         _dotDClk;
