Commit ec1a94e2 authored by Ken Edmundson's avatar Ken Edmundson
Browse files

removed incorrect const keywords from get methods in BundleControlPoint cpp and h

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/branches/ipce@6138 41f8697f-d340-4b68-9986-7bafba869bb8
parent 132623c6
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -203,38 +203,38 @@ namespace Isis {


  // ??? why bounded vector ??? can we use linear algebra vector ??? 
  const boost::numeric::ublas::bounded_vector< double, 3 > &BundleControlPoint::corrections() const {
  boost::numeric::ublas::bounded_vector< double, 3 > &BundleControlPoint::corrections() {
    return m_corrections;
  }



  const boost::numeric::ublas::bounded_vector< double, 3 > &BundleControlPoint::aprioriSigmas() const {
  boost::numeric::ublas::bounded_vector< double, 3 > &BundleControlPoint::aprioriSigmas() {
    return m_aprioriSigmas;

  }



  const boost::numeric::ublas::bounded_vector< double, 3 > &BundleControlPoint::adjustedSigmas() const {
  boost::numeric::ublas::bounded_vector< double, 3 > &BundleControlPoint::adjustedSigmas() {
    return m_adjustedSigmas;
  }



  const boost::numeric::ublas::bounded_vector< double, 3 > &BundleControlPoint::weights() const {
  boost::numeric::ublas::bounded_vector< double, 3 > &BundleControlPoint::weights() {
    return m_weights;
  }



  const boost::numeric::ublas::bounded_vector<double, 3> &BundleControlPoint::nicVector() const {
  boost::numeric::ublas::bounded_vector<double, 3> &BundleControlPoint::nicVector() {
    return m_nicVector;
  }



  const SparseBlockRowMatrix &BundleControlPoint::cholmod_QMatrix() const {
  SparseBlockRowMatrix &BundleControlPoint::cholmod_QMatrix() {
    return m_cholmod_QMatrix;
  }

+6 −6
Original line number Diff line number Diff line
@@ -65,12 +65,12 @@ namespace Isis {
      int numberMeasures() const;
      SurfacePoint getAdjustedSurfacePoint() const; // TODO: Rename this method without "get" to meet coding standards
      QString getId() const; // TODO: Rename this method without "get" to meet coding standards
      const boost::numeric::ublas::bounded_vector< double, 3 > &corrections() const;
      const boost::numeric::ublas::bounded_vector< double, 3 > &aprioriSigmas() const;
      const boost::numeric::ublas::bounded_vector< double, 3 > &adjustedSigmas() const;
      const boost::numeric::ublas::bounded_vector< double, 3 > &weights() const;
      const boost::numeric::ublas::bounded_vector<double, 3> &nicVector() const;         //!< array of NICs (see Brown, 1976)
      const SparseBlockRowMatrix &cholmod_QMatrix() const;
      boost::numeric::ublas::bounded_vector< double, 3 > &corrections();
      boost::numeric::ublas::bounded_vector< double, 3 > &aprioriSigmas();
      boost::numeric::ublas::bounded_vector< double, 3 > &adjustedSigmas();
      boost::numeric::ublas::bounded_vector< double, 3 > &weights();
      boost::numeric::ublas::bounded_vector<double, 3> &nicVector();         //!< array of NICs (see Brown, 1976)
      SparseBlockRowMatrix &cholmod_QMatrix();

      // string format methods
      QString formatBundleOutputSummaryString(bool errorPropagation) const;