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

Updated method names in CorrelationMatrix to better meet ISIS coding standards. Fixes #4112

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/branches/ipce@6898 41f8697f-d340-4b68-9986-7bafba869bb8
parent ad58e83d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -412,7 +412,7 @@ namespace Isis {
   * This will only be used when the matrix is small enough that this will be useful.
   *
   */
  void CorrelationMatrix::getWholeMatrix() {
  void CorrelationMatrix::retrieveWholeMatrix() {
//     SparseBlockColumnMatrix sbcm;
//     QFile matrixInput( m_correlationFileName->expanded() );
//     matrixInput.open(QIODevice::ReadOnly);
@@ -430,7 +430,7 @@ namespace Isis {
   * It will read in the block we want to see and the two blocks for the diagonals that belong to
   * the right images.
   */
  void CorrelationMatrix::getThreeVisibleBlocks() {
  void CorrelationMatrix::retrieveThreeVisibleBlocks() {
  }


+4 −2
Original line number Diff line number Diff line
@@ -64,6 +64,8 @@ namespace Isis {
   *                           initialized, resulting in a segmentation fault.  Also added
   *                           testing for exceptions being thrown in this constructor,
   *                           as well as the function computeCorrelationMatrix. Fixes #3997,3999.
   *   @history 2016-07-11 Jesse Mapel - Updated method names to meet coding standards.
   *                           Fixes #4112.
   */
  class CorrelationMatrix {
    public:
@@ -94,8 +96,8 @@ namespace Isis {
      FileName covarianceFileName();
      QMap<QString, QStringList> *imagesAndParameters();

      void getWholeMatrix();
      void getThreeVisibleBlocks();
      void retrieveWholeMatrix();
      void retrieveThreeVisibleBlocks();

      // Need these for range used to pick colors....
      QList<SparseBlockColumnMatrix> *visibleBlocks();