diff --git a/Framework/Geometry/src/Crystal/IndexingUtils.cpp b/Framework/Geometry/src/Crystal/IndexingUtils.cpp
index a7bec562a395b4ea1d3553e8b236fc844c57c872..78a13915e4093f58561ff23b3326df603d019cb6 100644
--- a/Framework/Geometry/src/Crystal/IndexingUtils.cpp
+++ b/Framework/Geometry/src/Crystal/IndexingUtils.cpp
@@ -2,21 +2,19 @@
 #include "MantidGeometry/Crystal/NiggliCell.h"
 #include "MantidKernel/EigenConversionHelpers.h"
 #include "MantidKernel/Quat.h"
-#include <Eigen/Geometry>
-#include <algorithm>
+
 #include <boost/math/special_functions/round.hpp>
 #include <boost/numeric/conversion/cast.hpp>
-#include <cmath>
-#include <stdexcept>
 
-extern "C" {
 #include <gsl/gsl_errno.h>
 #include <gsl/gsl_fft_real.h>
 #include <gsl/gsl_linalg.h>
 #include <gsl/gsl_matrix.h>
 #include <gsl/gsl_sys.h>
 #include <gsl/gsl_vector.h>
-}
+
+#include <algorithm>
+#include <cmath>
 
 using namespace Mantid::Geometry;
 using Mantid::Kernel::DblMatrix;
@@ -1206,8 +1204,8 @@ size_t IndexingUtils::FFTScanFor_Directions(std::vector<V3D> &directions,
                                             double min_d, double max_d,
                                             double required_tolerance,
                                             double degrees_per_step) {
-#define N_FFT_STEPS 512
-#define HALF_FFT_STEPS 256
+  constexpr size_t N_FFT_STEPS = 512;
+  constexpr size_t HALF_FFT_STEPS = 256;
 
   double fit_error;
   int max_indexed = 0;
@@ -1285,7 +1283,8 @@ size_t IndexingUtils::FFTScanFor_Directions(std::vector<V3D> &directions,
     GetMagFFT(q_vectors, temp_dir, N_FFT_STEPS, projections, index_factor,
               magnitude_fft);
 
-    double position = GetFirstMaxIndex(magnitude_fft, N_FFT_STEPS, threshold);
+    double position =
+        GetFirstMaxIndex(magnitude_fft, HALF_FFT_STEPS, threshold);
     if (position > 0) {
       double q_val = max_mag_Q / position;
       double d_val = 1 / q_val;
@@ -1474,7 +1473,9 @@ double IndexingUtils::GetFirstMaxIndex(const double magnitude_fft[], size_t N,
   if (found_max) {
     double sum = 0;
     double w_sum = 0;
-    for (size_t j = i - 2; j <= i + 2; j++) {
+    // only include single extra index if we're too near the end
+    const size_t last_index = i < N - 2 ? i + 2 : i + 1;
+    for (size_t j = i - 2; j <= last_index; j++) {
       sum += static_cast<double>(j) * magnitude_fft[j];
       w_sum += magnitude_fft[j];
     }