
#ifndef WINDUP_H
#define WINDUP_H

#include <newmat.h>

#include "ppp.h"
#include "bnctime.h"

namespace BNC {

class t_windUp {
 public:
  t_windUp();
  ~t_windUp() {};

  double value(const bncTime& etime, const ColumnVector& rRec, t_prn prn,
               const ColumnVector& rSat);

 private:
  double lastEtime[t_prn::MAXPRN+1];
  double sumWind[t_prn::MAXPRN+1];
};

}

#endif
