Ignore:
Timestamp:
Sep 14, 2014, 1:07:25 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/combination/bnccomb.cpp

    r6161 r6164  
    612612    }
    613613
     614    cout << "AA:  " << AA.Nrows() << ' ' << AA.Ncols() << endl;
     615    cout << "ll:  " << ll.Nrows() << endl;
     616    cout << "PP:  " << PP.Nrows() << ' ' << PP.Ncols() << endl;
     617    cout << "_QQ: " << _QQ.Nrows() << ' ' << _QQ.Ncols() << endl;
     618    cout << "dx: "  << dx.Nrows() << endl;
     619
    614620    dx = 0.0;
    615621    kalman(AA, ll, PP, _QQ, dx);
     622
     623    cout << "after Kalman" << endl;
     624
    616625    ColumnVector vv = ll - AA * dx;
     626
     627    cout << vv.t() << endl;
    617628
    618629    int     maxResIndex;
     
    807818  int iObs = 0;
    808819
     820  cout << "nObs, nCon, nPar: " << nObs << ' ' << nCon << ' ' << nPar << endl;
     821
     822  for (int iPar = 1; iPar <= _params.size(); iPar++) {
     823    cmbParam* pp = _params[iPar-1];
     824    cout << "PAR " << iPar << ' ' << pp->toString().toAscii().data() << endl;
     825  }
     826
    809827  QVectorIterator<cmbCorr*> itCorr(corrs());
    810828  while (itCorr.hasNext()) {
     
    816834    if (corr->_acName == _masterOrbitAC && resCorr.find(prn) == resCorr.end()) {
    817835      resCorr[prn] = new cmbCorr(*corr);
     836      cout << "resCor " << corr->_acName.toAscii().data() << ' '
     837           << prn.toAscii().data() << endl;
    818838    }
    819839
     
    824844
    825845    ll(iObs) = corr->_clkCorr._dClk * t_CST::c - DotProduct(AA.Row(iObs), x0);
     846    cout << "iObs, AC, prn, ll: " << iObs << ' ' << corr->_acName.toAscii().data() << ' '
     847         << corr->_prn.toAscii().data() << ' ' << ll(iObs) << endl;
    826848  }
    827849
Note: See TracChangeset for help on using the changeset viewer.