Changeset 3312 in ntrip for trunk/BNC


Ignore:
Timestamp:
Jun 21, 2011, 7:02:58 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncmodel.cpp

    r3310 r3312  
    8686double bncParam::partial(t_satData* satData, bool phase) {
    8787
     88  Tracer tracer("bncParam::partial");
     89
    8890  // Coordinates
    8991  // -----------
     
    275277void bncModel::reset() {
    276278
     279  Tracer tracer("bncModel::reset");
     280
    277281  for (int iPar = 1; iPar <= _params.size(); iPar++) {
    278282    delete _params[iPar-1];
     
    315319////////////////////////////////////////////////////////////////////////////
    316320t_irc bncModel::cmpBancroft(t_epoData* epoData) {
     321
     322  Tracer tracer("bncModel::cmpBancroft");
    317323
    318324  if (epoData->sizeGPS() < MINOBS) {
     
    384390double bncModel::cmpValue(t_satData* satData, bool phase) {
    385391
     392  Tracer tracer("bncModel::cmpValue");
     393
    386394  ColumnVector xRec(3);
    387395  xRec(1) = x();
     
    439447////////////////////////////////////////////////////////////////////////////
    440448double bncModel::delay_saast(double Ele) {
     449
     450  Tracer tracer("bncModel::delay_saast");
    441451
    442452  double xyz[3];
     
    479489void bncModel::predict(int iPhase, t_epoData* epoData) {
    480490
     491  Tracer tracer("bncModel::predict");
     492
    481493  if (iPhase == 0) {
    482494
     
    659671t_irc bncModel::update(t_epoData* epoData) {
    660672
     673  Tracer tracer("bncModel::update");
     674
    661675  bncSettings settings;
    662676
     
    928942                               QMap<QString, t_satData*>& satDataGal) {
    929943
     944  Tracer tracer("bncModel::outlierDetection");
     945
    930946  QString prnCode;
    931947  QString prnPhase;
     
    10171033void bncModel::writeNMEAstr(const QString& nmStr) {
    10181034
     1035  Tracer tracer("bncModel::writeNMEAstr");
     1036
    10191037  unsigned char XOR = 0;
    10201038  for (int ii = 0; ii < nmStr.length(); ii++) {
     
    10381056                      const DiagonalMatrix& PP,
    10391057                      SymmetricMatrix& QQ, ColumnVector& dx) {
     1058
     1059  Tracer tracer("bncModel::kalman");
    10401060
    10411061  int nObs = AA.Nrows();
     
    10741094                        const ColumnVector& rRec) {
    10751095
     1096  Tracer tracer("bncModel::windUp");
     1097
    10761098  double Mjd = _time.mjd() + _time.daysec() / 86400.0;
    10771099
     
    11531175///////////////////////////////////////////////////////////////////////////
    11541176void bncModel::cmpEle(t_satData* satData) {
     1177  Tracer tracer("bncModel::cmpEle");
    11551178  ColumnVector rr = satData->xx - _xcBanc.Rows(1,3);
    11561179  double       rho = rr.norm_Frobenius();
     
    11691192///////////////////////////////////////////////////////////////////////////
    11701193void bncModel::addAmb(t_satData* satData) {
     1194  Tracer tracer("bncModel::addAmb");
    11711195  bool    found = false;
    11721196  for (int iPar = 1; iPar <= _params.size(); iPar++) {
     
    11891213void bncModel::addObs(int iPhase, unsigned& iObs, t_satData* satData,
    11901214                      Matrix& AA, ColumnVector& ll, DiagonalMatrix& PP) {
     1215
     1216  Tracer tracer("bncModel::addObs");
    11911217
    11921218  // Phase Observations
     
    12231249void bncModel::printRes(int iPhase, const ColumnVector& vv,
    12241250                        ostringstream& str, t_satData* satData) {
     1251  Tracer tracer("bncModel::printRes");
    12251252  if (iPhase == 1) {
    12261253    str << _time.timestr(1)
     
    12411268                          QString& prnCode,  double& maxResCode,
    12421269                          QString& prnPhase, double& maxResPhase) {
     1270  Tracer tracer("bncModel::findMaxRes");
    12431271  maxResCode  = 0.0;
    12441272  maxResPhase = 0.0;
     
    12661294////////////////////////////////////////////////////////////////////////////
    12671295t_irc bncModel::update_p(t_epoData* epoData, ColumnVector& dx) {
     1296
     1297  Tracer tracer("bncModel::update_p");
    12681298
    12691299  SymmetricMatrix QQsav;
Note: See TracChangeset for help on using the changeset viewer.