Commit c3a876cf authored by Jesse Mapel's avatar Jesse Mapel
Browse files

Made a few documentation tweaks.

parent bc8ae943
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -106,8 +106,9 @@ namespace Isis {
   *                           Fixes #4804, #4837.
   *   @history 2017-07-11 Makayla Shepherd - Added bundle naming capabilities. Fixes #4855.
   *   @history 2017-07-28 Makayla Shepherd - Fixed the default naming tag. Fixes #5069.
   *   @history 2017-07-14 Ken Edmundson Added support for output of statistics for piecewise
   *   @history 2017-07-14 Ken Edmundson - Added support for output of statistics for piecewise
   *                                     polynomials.
   *   @history 2017-10-11 Jesse Mapel - Modified output file methods to account for piecewise.
   */
  class BundleSolutionInfo : public QObject {
    Q_OBJECT
+3 −1
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ namespace Isis {
   *                            when writing bundleout.txt OR images.csv.
   *                           -changed sigma default from -1.0 to N/A for position and pointing
   *                            parameters when writing images.csv. 
   *   @history 2017-07-14 Ken Edmundson Added support for piecewise polynomials...
   *   @history 2017-07-14 Ken Edmundson - Added support for piecewise polynomials...
   *                           -m_continuityConstraints member.
   *                           -methods...
   *                               int numberPolynomialPositionSegments
@@ -85,6 +85,8 @@ namespace Isis {
   *                               int numberPolynomialSegments
   *                               int numberContinuityConstraints
   *                               void applyContinuityConstraints
   *   @history 2017-10-11 Jesse Mapel - Modified output string methods to account for
   *                           piecewise polynomials.
   *
   */
  class BundleObservation : public QVector<QSharedPointer<BundleImage> > {
+10 −2
Original line number Diff line number Diff line
@@ -401,6 +401,12 @@ namespace Isis {
      m_numberCamAngleCoefSolved = ((int) option);
    }

    // If only solving for only angles,
    // continuity conditions would force all segments to be the same.
    // So, just use one segment.
    if (m_instrumentPointingSolveOption <= 1 )
      m_numberCkPolySegments = 1;
    else
      m_numberCkPolySegments = ckPolynomialSegments;

    m_anglesAprioriSigma.clear();
@@ -661,7 +667,9 @@ namespace Isis {
      m_numberCamPosCoefSolved = ((int) option);
    }

    // if the solve polynomial de
    // If only solving for only position,
    // continuity conditions would force all segments to be the same.
    // So, just use one segment.
    if (m_instrumentPositionSolveOption <= 1 )
      m_numberSpkPolySegments = 1;
    else