diff --git a/Framework/Kernel/src/MDUnitFactory.cpp b/Framework/Kernel/src/MDUnitFactory.cpp
index 9e7d7a998117cd54b36fe2b91e38285949c7038d..286ec9f2f878d42f5d2b0ef8e4553ee825408cbd 100644
--- a/Framework/Kernel/src/MDUnitFactory.cpp
+++ b/Framework/Kernel/src/MDUnitFactory.cpp
@@ -24,8 +24,13 @@ InverseAngstromsUnitFactory::createRaw(const std::string &) const {
 bool InverseAngstromsUnitFactory::canInterpret(
     const std::string &unitString) const {
   boost::regex pattern("(Angstrom\\^-1)");
+  boost::regex pattern2("A\\^-1");
   boost::smatch match; // Unused.
-  return boost::regex_search(unitString, match, pattern);
+
+  auto isFullAngstrom = boost::regex_search(unitString, match, pattern);
+  auto isPartialAngstrom = boost::regex_search(unitString, match, pattern2);
+
+  return isFullAngstrom || isPartialAngstrom;
 }
 
 ReciprocalLatticeUnit *
diff --git a/Framework/MDAlgorithms/inc/MantidMDAlgorithms/SlicingAlgorithm.h b/Framework/MDAlgorithms/inc/MantidMDAlgorithms/SlicingAlgorithm.h
index a92af395b656f645902fea48169c7dd1ac083003..72827e329c5224df45e81c4b7f9c6102811fb641 100644
--- a/Framework/MDAlgorithms/inc/MantidMDAlgorithms/SlicingAlgorithm.h
+++ b/Framework/MDAlgorithms/inc/MantidMDAlgorithms/SlicingAlgorithm.h
@@ -150,6 +150,10 @@ protected:
 
   /// The NormalizeBasisVectors option
   bool m_NormalizeBasisVectors;
+
+  private:
+  //Mantid::Geometry::MDFrame_uptr createMDFrameForNonAxisAligned(std::string units) const;
+
 };
 
 } // namespace DataObjects
diff --git a/Framework/MDAlgorithms/src/ConvertToDiffractionMDWorkspace.cpp b/Framework/MDAlgorithms/src/ConvertToDiffractionMDWorkspace.cpp
index ae7ad28b68c1df0a6ad624f22c21ba3215eacb0f..e5babed54991b1e7c253c59f9a9bd905fa1b3474 100644
--- a/Framework/MDAlgorithms/src/ConvertToDiffractionMDWorkspace.cpp
+++ b/Framework/MDAlgorithms/src/ConvertToDiffractionMDWorkspace.cpp
@@ -444,7 +444,7 @@ void ConvertToDiffractionMDWorkspace::exec() {
     // Give all the dimensions
     for (size_t d = 0; d < nd; d++) {
       MDHistoDimension *dim = new MDHistoDimension(
-          dimensionNames[d], dimensionNames[d], *frame.get(),
+          dimensionNames[d], dimensionNames[d], *frame,
           static_cast<coord_t>(extents[d * 2]),
           static_cast<coord_t>(extents[d * 2 + 1]), 10);
       ws->addDimension(MDHistoDimension_sptr(dim));
diff --git a/Framework/MDAlgorithms/src/CreateMDWorkspace.cpp b/Framework/MDAlgorithms/src/CreateMDWorkspace.cpp
index dbfdbaa7bbb7fdf1f1ca5279657a714121a6584b..72e3081434b462a3416baa7b014fbcd6f0ae2b14 100644
--- a/Framework/MDAlgorithms/src/CreateMDWorkspace.cpp
+++ b/Framework/MDAlgorithms/src/CreateMDWorkspace.cpp
@@ -176,7 +176,7 @@ void CreateMDWorkspace::exec() {
   for (size_t d = 0; d < ndims; d++) {
     auto frame = createMDFrame(frames[d], units[d]);
     MDHistoDimension *dim = new MDHistoDimension(
-        names[d], names[d], *frame.get(), static_cast<coord_t>(extents[d * 2]),
+        names[d], names[d], *frame, static_cast<coord_t>(extents[d * 2]),
         static_cast<coord_t>(extents[d * 2 + 1]), 1);
     out->addDimension(MDHistoDimension_sptr(dim));
   }
diff --git a/Framework/MDAlgorithms/src/MergeMD.cpp b/Framework/MDAlgorithms/src/MergeMD.cpp
index 0c441665f31aa3dac30d220e6b4d973dca69d2b5..edd7d43cc1ca3434c1766f4cf62272e5ebb505a5 100644
--- a/Framework/MDAlgorithms/src/MergeMD.cpp
+++ b/Framework/MDAlgorithms/src/MergeMD.cpp
@@ -133,7 +133,7 @@ void MergeMD::createOutputWorkspace(std::vector<std::string> &inputs) {
   for (size_t d = 0; d < numDims; d++) {
     IMDDimension_const_sptr dim0 = ws0->getDimension(d);
     MDHistoDimension *dim = new MDHistoDimension(
-        dim0->getName(), dim0->getDimensionId(), dim0->getUnits(), dimMin[d],
+        dim0->getName(), dim0->getDimensionId(), dim0->getMDFrame(), dimMin[d],
         dimMax[d], dim0->getNBins());
     out->addDimension(MDHistoDimension_sptr(dim));
   }
diff --git a/Framework/MDAlgorithms/src/SlicingAlgorithm.cpp b/Framework/MDAlgorithms/src/SlicingAlgorithm.cpp
index 14522f6fce6d44e071b9d6823c4a04a96560ea01..aa6e472019c7d11a5a857bba679776c7dd07e9fa 100644
--- a/Framework/MDAlgorithms/src/SlicingAlgorithm.cpp
+++ b/Framework/MDAlgorithms/src/SlicingAlgorithm.cpp
@@ -186,10 +186,6 @@ void SlicingAlgorithm::makeBasisVectorFromString(const std::string &str) {
                                 "input dimensions) in the dimensions string: " +
                                 str);
 
-  // Extract the arguments
-  std::string id = name;
-  std::string units = Strings::strip(strs[0]);
-
   // Get the number of bins from
   int numBins = m_numBins[dim];
   if (numBins < 1)
@@ -250,6 +246,13 @@ void SlicingAlgorithm::makeBasisVectorFromString(const std::string &str) {
   // BIN number
   double binningScaling = double(numBins) / (lengthInInput);
 
+  // Extract the arguments
+  std::string id = name;
+  std::string units = Strings::strip(strs[0]);
+
+  // Create the appropriate frame
+  //auto frame = createMDFrame(units);
+
   // Create the output dimension
   MDHistoDimension_sptr out(
       new MDHistoDimension(name, id, units, static_cast<coord_t>(min),
@@ -510,9 +513,10 @@ void SlicingAlgorithm::makeAlignedDimensionFromString(const std::string &str) {
 
     // Copy the dimension name, ID and units
     IMDDimension_const_sptr inputDim = m_inWS->getDimension(dim_index);
+    const auto& frame = inputDim->getMDFrame();
     m_binDimensions.push_back(MDHistoDimension_sptr(
         new MDHistoDimension(inputDim->getName(), inputDim->getDimensionId(),
-                             inputDim->getUnits(), min, max, numBins)));
+                             frame, min, max, numBins)));
 
     // Add the index from which we're binning to the vector
     this->m_dimensionToBinFrom.push_back(dim_index);
@@ -1002,5 +1006,18 @@ SlicingAlgorithm::getImplicitFunctionForChunk(const size_t *const chunkMin,
   }
 }
 
+#if 0
+/**
+ * Create an MDFrame for the Non-Axis-Aligned case
+ * 1. Check that Q-based frames are not mixed with non-Q-based frames
+ * 2. Select Q-based frame if available
+ * @param units: the units
+ * @returns the unique pointer
+ */
+Mantid::Geometry::MDFrame_uptr SlicingAlgorithm::createMDFrameForNonAxisAligned(std::string units) const {
+
+}
+#endif
+
 } // namespace Mantid
 } // namespace DataObjects
diff --git a/Framework/MDAlgorithms/test/BinMDTest.h b/Framework/MDAlgorithms/test/BinMDTest.h
index 71dabc2c7a619c5ee241bdc79df54ac04d6e2244..623bdc51509f54035a0eb0c3ad16c7d98d2b7783 100644
--- a/Framework/MDAlgorithms/test/BinMDTest.h
+++ b/Framework/MDAlgorithms/test/BinMDTest.h
@@ -10,6 +10,7 @@
 #include "MantidAPI/ImplicitFunctionParameterParserFactory.h"
 #include "MantidGeometry/MDGeometry/MDImplicitFunction.h"
 #include "MantidGeometry/MDGeometry/MDTypes.h"
+#include "MantidGeometry/MDGeometry/QSample.h"
 #include "MantidMDAlgorithms/BinMD.h"
 #include "MantidMDAlgorithms/CreateMDWorkspace.h"
 #include "MantidMDAlgorithms/FakeMDEventData.h"
@@ -114,11 +115,12 @@ public:
     TS_ASSERT_THROWS_NOTHING(alg.initialize())
     TS_ASSERT(alg.isInitialized())
 
+    Mantid::Geometry::QSample frame;
     IMDEventWorkspace_sptr in_ws =
-        MDEventsTestHelper::makeMDEW<3>(10, 0.0, 10.0, numEventsPerBox);
+        MDEventsTestHelper::makeAnyMDEWWithFrames<MDLeanEvent<3>, 3>(10, 0.0, 10.0, frame, numEventsPerBox);
     Mantid::Kernel::SpecialCoordinateSystem appliedCoord =
         Mantid::Kernel::QSample;
-    in_ws->setCoordinateSystem(appliedCoord);
+
     auto eventNorm = Mantid::API::MDNormalization::VolumeNormalization;
     auto histoNorm = Mantid::API::MDNormalization::NumEventsNormalization;
     in_ws->setDisplayNormalization(eventNorm);
diff --git a/Framework/MDAlgorithms/test/CentroidPeaksMD2Test.h b/Framework/MDAlgorithms/test/CentroidPeaksMD2Test.h
index 540525613396ddbf556def05edf754c682dc2f78..e5861ffbcb053100f3e0800a8068a919dfc9c7e1 100644
--- a/Framework/MDAlgorithms/test/CentroidPeaksMD2Test.h
+++ b/Framework/MDAlgorithms/test/CentroidPeaksMD2Test.h
@@ -6,10 +6,14 @@
 #include "MantidDataObjects/PeaksWorkspace.h"
 #include "MantidDataObjects/MDEventFactory.h"
 #include "MantidGeometry/MDGeometry/MDHistoDimension.h"
+#include "MantidGeometry/MDGeometry/HKL.h"
+#include "MantidGeometry/MDGeometry/QSample.h"
+#include "MantidGeometry/MDGeometry/QLab.h"
 #include "MantidTestHelpers/ComponentCreationHelper.h"
 #include "MantidMDAlgorithms/CentroidPeaksMD2.h"
 #include "MantidMDAlgorithms/CreateMDWorkspace.h"
 #include "MantidMDAlgorithms/FakeMDEventData.h"
+#include "MantidKernel/UnitLabelTypes.h"
 
 #include <boost/math/distributions/normal.hpp>
 #include <boost/math/special_functions/fpclassify.hpp>
@@ -40,8 +44,22 @@ public:
 
   //-------------------------------------------------------------------------------
   /** Create the (blank) MDEW */
-  static void createMDEW() {
+  static void createMDEW(std::string CoordinatesToUse) {
     // ---- Start with empty MDEW ----
+    std::string frames;
+    if (CoordinatesToUse == "Q (lab frame)") {
+      frames = Mantid::Geometry::QLab::QLabName + "," +
+               Mantid::Geometry::QLab::QLabName + "," +
+               Mantid::Geometry::QLab::QLabName;
+    } else if (CoordinatesToUse == "Q (sample frame)") {
+      frames = Mantid::Geometry::QSample::QSampleName + "," +
+               Mantid::Geometry::QSample::QSampleName + "," +
+               Mantid::Geometry::QSample::QSampleName;
+    } else if (CoordinatesToUse == "HKL") {
+      frames = Mantid::Geometry::HKL::HKLName + "," +
+               Mantid::Geometry::HKL::HKLName + "," +
+               Mantid::Geometry::HKL::HKLName;
+    }
     CreateMDWorkspace algC;
     TS_ASSERT_THROWS_NOTHING(algC.initialize())
     TS_ASSERT(algC.isInitialized())
@@ -49,7 +67,11 @@ public:
     TS_ASSERT_THROWS_NOTHING(
         algC.setProperty("Extents", "-10,10,-10,10,-10,10"));
     TS_ASSERT_THROWS_NOTHING(algC.setProperty("Names", "h,k,l"));
-    TS_ASSERT_THROWS_NOTHING(algC.setProperty("Units", "-,-,-"));
+    std::string units = Mantid::Kernel::Units::Symbol::RLU.ascii() + "," +
+                        Mantid::Kernel::Units::Symbol::RLU.ascii() + "," +
+                        Mantid::Kernel::Units::Symbol::RLU.ascii();
+    TS_ASSERT_THROWS_NOTHING(algC.setProperty("Units", units));
+    TS_ASSERT_THROWS_NOTHING(algC.setProperty("Frames", frames));
     TS_ASSERT_THROWS_NOTHING(algC.setProperty("SplitInto", "5"));
     TS_ASSERT_THROWS_NOTHING(algC.setProperty("MaxRecursionDepth", "2"));
     TS_ASSERT_THROWS_NOTHING(
@@ -140,7 +162,7 @@ public:
   /** Full test using faked-out peak data */
   void do_test_exec() {
     // --- Fake workspace with 3 peaks ------
-    createMDEW();
+    createMDEW(CoordinatesToUse);
     addPeak(1000, 0, 0., 0., 1.0);
     addPeak(1000, 2., 3., 4., 0.5);
     addPeak(1000, 6., 6., 6., 2.0);
@@ -196,7 +218,7 @@ public:
 
   void test_exec_HKL_NotInPlace() {
     CoordinatesToUse = "HKL";
-    createMDEW();
+    createMDEW(CoordinatesToUse);
     addPeak(1000, 0, 0., 0., 1.0);
     doRun(V3D(0., 0., 0.), 1.0, V3D(0., 0., 0.),
           "Start at the center, get the center",
diff --git a/Framework/MDAlgorithms/test/CentroidPeaksMDTest.h b/Framework/MDAlgorithms/test/CentroidPeaksMDTest.h
index 13d1cf96811d487bdf6221f3abb1d0869a1cd2f8..28819fc8675ee193f413d79b4f405bcad5dc3c5b 100644
--- a/Framework/MDAlgorithms/test/CentroidPeaksMDTest.h
+++ b/Framework/MDAlgorithms/test/CentroidPeaksMDTest.h
@@ -6,10 +6,14 @@
 #include "MantidDataObjects/PeaksWorkspace.h"
 #include "MantidDataObjects/MDEventFactory.h"
 #include "MantidGeometry/MDGeometry/MDHistoDimension.h"
+#include "MantidGeometry/MDGeometry/HKL.h"
+#include "MantidGeometry/MDGeometry/QSample.h"
+#include "MantidGeometry/MDGeometry/QLab.h"
 #include "MantidMDAlgorithms/CentroidPeaksMD.h"
 #include "MantidMDAlgorithms/CreateMDWorkspace.h"
 #include "MantidMDAlgorithms/FakeMDEventData.h"
 #include "MantidTestHelpers/ComponentCreationHelper.h"
+#include "MantidKernel/UnitLabelTypes.h"
 
 #include <boost/math/distributions/normal.hpp>
 #include <boost/math/special_functions/fpclassify.hpp>
@@ -30,6 +34,7 @@ using namespace Mantid::Geometry;
 using namespace Mantid::MDAlgorithms;
 using Mantid::Kernel::V3D;
 
+
 class CentroidPeaksMDTest : public CxxTest::TestSuite {
 public:
   void test_Init() {
@@ -40,8 +45,23 @@ public:
 
   //-------------------------------------------------------------------------------
   /** Create the (blank) MDEW */
-  static void createMDEW() {
+  static void createMDEW(std::string CoordinatesToUse) {
     // ---- Start with empty MDEW ----
+    std::string frames;
+    if (CoordinatesToUse == "Q (lab frame)") {
+      frames = Mantid::Geometry::QLab::QLabName + "," +
+               Mantid::Geometry::QLab::QLabName + "," +
+               Mantid::Geometry::QLab::QLabName;
+    } else if (CoordinatesToUse == "Q (sample frame)") {
+      frames = Mantid::Geometry::QSample::QSampleName + "," +
+               Mantid::Geometry::QSample::QSampleName + "," +
+               Mantid::Geometry::QSample::QSampleName;
+    } else if (CoordinatesToUse == "HKL") {
+      frames = Mantid::Geometry::HKL::HKLName + "," +
+               Mantid::Geometry::HKL::HKLName + "," +
+               Mantid::Geometry::HKL::HKLName;
+    }
+
     CreateMDWorkspace algC;
     TS_ASSERT_THROWS_NOTHING(algC.initialize())
     TS_ASSERT(algC.isInitialized())
@@ -49,7 +69,11 @@ public:
     TS_ASSERT_THROWS_NOTHING(
         algC.setProperty("Extents", "-10,10,-10,10,-10,10"));
     TS_ASSERT_THROWS_NOTHING(algC.setProperty("Names", "h,k,l"));
-    TS_ASSERT_THROWS_NOTHING(algC.setProperty("Units", "-,-,-"));
+    std::string units = Mantid::Kernel::Units::Symbol::RLU.ascii() + "," +
+                        Mantid::Kernel::Units::Symbol::RLU.ascii() + "," +
+                        Mantid::Kernel::Units::Symbol::RLU.ascii();
+    TS_ASSERT_THROWS_NOTHING(algC.setProperty("Units", units));
+    TS_ASSERT_THROWS_NOTHING(algC.setProperty("Frames", frames));
     TS_ASSERT_THROWS_NOTHING(algC.setProperty("SplitInto", "5"));
     TS_ASSERT_THROWS_NOTHING(algC.setProperty("MaxRecursionDepth", "2"));
     TS_ASSERT_THROWS_NOTHING(
@@ -140,7 +164,7 @@ public:
   /** Full test using faked-out peak data */
   void do_test_exec() {
     // --- Fake workspace with 3 peaks ------
-    createMDEW();
+    createMDEW(CoordinatesToUse);
     addPeak(1000, 0, 0., 0., 1.0);
     addPeak(1000, 2., 3., 4., 0.5);
     addPeak(1000, 6., 6., 6., 2.0);
@@ -196,7 +220,7 @@ public:
 
   void test_exec_HKL_NotInPlace() {
     CoordinatesToUse = "HKL";
-    createMDEW();
+    createMDEW(CoordinatesToUse);
     addPeak(1000, 0, 0., 0., 1.0);
     doRun(V3D(0., 0., 0.), 1.0, V3D(0., 0., 0.),
           "Start at the center, get the center",
diff --git a/Framework/MDAlgorithms/test/IntegratePeaksMD2Test.h b/Framework/MDAlgorithms/test/IntegratePeaksMD2Test.h
index 9ae687145f3c08fa7d9dbd83c7ebd76019a55463..dc5870cc71992f515132734ec0ad6133883b18f9 100644
--- a/Framework/MDAlgorithms/test/IntegratePeaksMD2Test.h
+++ b/Framework/MDAlgorithms/test/IntegratePeaksMD2Test.h
@@ -8,10 +8,13 @@
 #include "MantidDataObjects/PeaksWorkspace.h"
 #include "MantidDataObjects/PeakShapeSpherical.h"
 #include "MantidGeometry/MDGeometry/MDHistoDimension.h"
+#include "MantidGeometry/MDGeometry/HKL.h"
+
 #include "MantidMDAlgorithms/CreateMDWorkspace.h"
 #include "MantidMDAlgorithms/FakeMDEventData.h"
 #include "MantidMDAlgorithms/IntegratePeaksMD2.h"
 #include "MantidTestHelpers/ComponentCreationHelper.h"
+#include "MantidKernel/UnitLabelTypes.h"
 
 #include <boost/math/distributions/normal.hpp>
 #include <boost/math/special_functions/fpclassify.hpp>
@@ -91,7 +94,14 @@ public:
     TS_ASSERT_THROWS_NOTHING(
         algC.setProperty("Extents", "-10,10,-10,10,-10,10"));
     TS_ASSERT_THROWS_NOTHING(algC.setProperty("Names", "h,k,l"));
-    TS_ASSERT_THROWS_NOTHING(algC.setProperty("Units", "-,-,-"));
+    std::string units = Mantid::Kernel::Units::Symbol::RLU.ascii() + "," +
+                        Mantid::Kernel::Units::Symbol::RLU.ascii() + "," +
+                        Mantid::Kernel::Units::Symbol::RLU.ascii();
+    TS_ASSERT_THROWS_NOTHING(algC.setProperty("Units", units));
+    std::string frames = Mantid::Geometry::HKL::HKLName + "," +
+                         Mantid::Geometry::HKL::HKLName + "," +
+                         Mantid::Geometry::HKL::HKLName;
+    TS_ASSERT_THROWS_NOTHING(algC.setProperty("Frames", frames));
     TS_ASSERT_THROWS_NOTHING(algC.setProperty("SplitInto", "5"));
     TS_ASSERT_THROWS_NOTHING(algC.setProperty("MaxRecursionDepth", "2"));
     TS_ASSERT_THROWS_NOTHING(algC.setPropertyValue(
diff --git a/Framework/MDAlgorithms/test/IntegratePeaksMDTest.h b/Framework/MDAlgorithms/test/IntegratePeaksMDTest.h
index b992ac7198cf4501ec5ecbe1ee6861c072d7e22d..b21c19441bf83ab81ebd1798dedc72dc523acccb 100644
--- a/Framework/MDAlgorithms/test/IntegratePeaksMDTest.h
+++ b/Framework/MDAlgorithms/test/IntegratePeaksMDTest.h
@@ -8,10 +8,12 @@
 #include "MantidDataObjects/PeaksWorkspace.h"
 #include "MantidDataObjects/PeakShapeSpherical.h"
 #include "MantidGeometry/MDGeometry/MDHistoDimension.h"
+#include "MantidGeometry/MDGeometry/HKL.h"
 #include "MantidMDAlgorithms/IntegratePeaksMD.h"
 #include "MantidMDAlgorithms/CreateMDWorkspace.h"
 #include "MantidMDAlgorithms/FakeMDEventData.h"
 #include "MantidTestHelpers/ComponentCreationHelper.h"
+#include "MantidKernel/UnitLabelTypes.h"
 
 #include <boost/math/distributions/normal.hpp>
 #include <boost/math/special_functions/fpclassify.hpp>
@@ -86,9 +88,16 @@ public:
     TS_ASSERT_THROWS_NOTHING(
         algC.setProperty("Extents", "-10,10,-10,10,-10,10"));
     TS_ASSERT_THROWS_NOTHING(algC.setProperty("Names", "h,k,l"));
-    TS_ASSERT_THROWS_NOTHING(algC.setProperty("Units", "-,-,-"));
+    std::string units = Mantid::Kernel::Units::Symbol::RLU.ascii() + "," +
+                        Mantid::Kernel::Units::Symbol::RLU.ascii() + "," +
+                        Mantid::Kernel::Units::Symbol::RLU.ascii();
+    TS_ASSERT_THROWS_NOTHING(algC.setProperty("Units", units));
     TS_ASSERT_THROWS_NOTHING(algC.setProperty("SplitInto", "5"));
     TS_ASSERT_THROWS_NOTHING(algC.setProperty("MaxRecursionDepth", "2"));
+    std::string frames = Mantid::Geometry::HKL::HKLName + "," +
+                         Mantid::Geometry::HKL::HKLName + "," +
+                         Mantid::Geometry::HKL::HKLName;
+    TS_ASSERT_THROWS_NOTHING(algC.setProperty("Frames", frames));
     TS_ASSERT_THROWS_NOTHING(
         algC.setPropertyValue("OutputWorkspace", "IntegratePeaksMDTest_MDEWS"));
     TS_ASSERT_THROWS_NOTHING(algC.execute());
@@ -124,6 +133,8 @@ public:
         AnalysisDataService::Instance().retrieveWS<MDEventWorkspace3Lean>(
             "IntegratePeaksMDTest_MDEWS");
     mdews->setCoordinateSystem(Mantid::Kernel::HKL);
+    auto& frame = mdews->getDimension(0)->getMDFrame();
+
     TS_ASSERT_EQUALS(mdews->getNPoints(), 3000);
     TS_ASSERT_DELTA(mdews->getBox()->getSignal(), 3000.0, 1e-2);
 
diff --git a/Framework/MDAlgorithms/test/LoadMDTest.h b/Framework/MDAlgorithms/test/LoadMDTest.h
index 4ff9b2548cb8be67a0a65056d3fb9bb3b1b7e138..855729c5f344364b6cd603d4652fc034d5fc9a1f 100644
--- a/Framework/MDAlgorithms/test/LoadMDTest.h
+++ b/Framework/MDAlgorithms/test/LoadMDTest.h
@@ -565,8 +565,10 @@ public:
   void test_histo1D() {
     Mantid::coord_t min(-10.0);
     Mantid::coord_t max(10.0);
+    Mantid::Geometry::GeneralFrame frame(
+        Mantid::Geometry::GeneralFrame::GeneralFrameDistance, "m");
     std::vector<Geometry::IMDDimension_sptr> dims(
-        1, boost::make_shared<Geometry::MDHistoDimension>("X", "x", "m", min,
+        1, boost::make_shared<Geometry::MDHistoDimension>("X", "x", frame, min,
                                                           max, 5));
     MDHistoWorkspace_sptr ws =
         boost::make_shared<MDHistoWorkspace>(dims, API::VolumeNormalization);
diff --git a/Framework/MDAlgorithms/test/MergeMDFilesTest.h b/Framework/MDAlgorithms/test/MergeMDFilesTest.h
index 5951f35b6f93131fd258282c7084442575c65b62..e7fb5c6f6b319e451a43bd890e744a6608ec2999 100644
--- a/Framework/MDAlgorithms/test/MergeMDFilesTest.h
+++ b/Framework/MDAlgorithms/test/MergeMDFilesTest.h
@@ -4,6 +4,7 @@
 #include "MantidMDAlgorithms/MergeMDFiles.h"
 #include "MantidDataObjects/MDEventFactory.h"
 #include "MantidTestHelpers/MDAlgorithmsTestHelper.h"
+#include "MantidGeometry/MDGeometry/QSample.h"
 
 #include <cxxtest/TestSuite.h>
 
@@ -35,6 +36,7 @@ public:
     std::vector<std::vector<std::string>> filenames;
     Mantid::Kernel::SpecialCoordinateSystem appliedCoord =
         Mantid::Kernel::QSample;
+    Mantid::Geometry::QSample frame;
     std::vector<MDEventWorkspace3Lean::sptr> inWorkspaces;
     // how many events put into each file.
     long nFileEvents(1000);
@@ -42,8 +44,8 @@ public:
       std::ostringstream mess;
       mess << "MergeMDFilesTestInput" << i;
       MDEventWorkspace3Lean::sptr ws =
-          MDAlgorithmsTestHelper::makeFileBackedMDEW(
-              mess.str(), true, -nFileEvents, appliedCoord);
+          MDAlgorithmsTestHelper::makeFileBackedMDEWwithMDFrame(
+              mess.str(), true, frame, -nFileEvents, appliedCoord);
       inWorkspaces.push_back(ws);
       filenames.push_back(
           std::vector<std::string>(1, ws->getBoxController()->getFilename()));
diff --git a/Framework/MDAlgorithms/test/SliceMDTest.h b/Framework/MDAlgorithms/test/SliceMDTest.h
index 3bda00f80a88a441e782bf54115094bc308e7d2e..7a043a5a790c52d3a72ee6f5c56ab08ceaac848e 100644
--- a/Framework/MDAlgorithms/test/SliceMDTest.h
+++ b/Framework/MDAlgorithms/test/SliceMDTest.h
@@ -5,6 +5,7 @@
 #include "MantidMDAlgorithms/SliceMD.h"
 #include "MantidDataObjects/CoordTransformAffine.h"
 #include "MantidTestHelpers/MDEventsTestHelper.h"
+#include "MantidGeometry/MDGeometry/QSample.h"
 
 #include <cxxtest/TestSuite.h>
 
@@ -145,9 +146,9 @@ public:
     SliceMD alg;
     TS_ASSERT_THROWS_NOTHING(alg.initialize())
     TS_ASSERT(alg.isInitialized())
-
+    Mantid::Geometry::QSample frame;
     IMDEventWorkspace_sptr in_ws =
-        MDEventsTestHelper::makeAnyMDEW<MDE, nd>(10, 0.0, 10.0, 1);
+        MDEventsTestHelper::makeAnyMDEWWithFrames<MDE, nd>(10, 0.0, 10.0, frame, 1);
     Mantid::Kernel::SpecialCoordinateSystem appliedCoord =
         Mantid::Kernel::QSample;
     in_ws->setCoordinateSystem(appliedCoord);
diff --git a/Framework/MDAlgorithms/test/ThresholdMDTest.h b/Framework/MDAlgorithms/test/ThresholdMDTest.h
index 831759a1e3fb060e53379096a7403f0ba163a899..794e5d1d12a2af54619c30e14c90fa8e35ae4a39 100644
--- a/Framework/MDAlgorithms/test/ThresholdMDTest.h
+++ b/Framework/MDAlgorithms/test/ThresholdMDTest.h
@@ -5,7 +5,7 @@
 #include "MantidGeometry/MDGeometry/MDHistoDimension.h"
 #include "MantidGeometry/MDGeometry/MDTypes.h"
 #include "MantidMDAlgorithms/ThresholdMD.h"
-
+#include "MantidGeometry/MDGeometry/QLab.h"
 #include <cxxtest/TestSuite.h>
 
 using namespace Mantid::API;
@@ -22,12 +22,12 @@ public:
   // This means the constructor isn't called when running other tests
   static ThresholdMDTest *createSuite() { return new ThresholdMDTest(); }
   static void destroySuite(ThresholdMDTest *suite) { delete suite; }
-
+  Mantid::Geometry::QLab frame;
   MDHistoWorkspace_sptr createInputWorkspace(signal_t signal,
                                              signal_t errorSQ = 0,
                                              const int nBins = 1) {
     MDHistoDimension_sptr dim = boost::make_shared<MDHistoDimension>(
-        "X", "X", "", static_cast<coord_t>(0), static_cast<coord_t>(10),
+        "X", "X", frame, static_cast<coord_t>(0), static_cast<coord_t>(10),
         static_cast<size_t>(nBins));
     MDHistoWorkspace_sptr histo = boost::make_shared<MDHistoWorkspace>(dim);
     signal_t *signals = histo->getSignalArray();
diff --git a/Framework/TestHelpers/inc/MantidTestHelpers/MDAlgorithmsTestHelper.h b/Framework/TestHelpers/inc/MantidTestHelpers/MDAlgorithmsTestHelper.h
index d75d83317bc762cbbb02fa5a34ae24e6b856939f..80bbd1cb96caccfad070b771b008b2c6c1c1437c 100644
--- a/Framework/TestHelpers/inc/MantidTestHelpers/MDAlgorithmsTestHelper.h
+++ b/Framework/TestHelpers/inc/MantidTestHelpers/MDAlgorithmsTestHelper.h
@@ -18,6 +18,11 @@ makeFileBackedMDEW(const std::string &wsName, bool fileBacked,
                    long numEvents = 10000,
                    Kernel::SpecialCoordinateSystem coord = Kernel::None);
 
+DataObjects::MDEventWorkspace3Lean::sptr makeFileBackedMDEWwithMDFrame(
+    const std::string &wsName, bool fileBacked,
+    const Mantid::Geometry::MDFrame &frame, long numEvents = 10000,
+    Kernel::SpecialCoordinateSystem coord = Kernel::None);
+
 } // namespace
 }
 }
diff --git a/Framework/TestHelpers/inc/MantidTestHelpers/MDEventsTestHelper.h b/Framework/TestHelpers/inc/MantidTestHelpers/MDEventsTestHelper.h
index ee88617ab74a2c018e146f30e213899c838f1b4c..6d620b6a7c82f0e1835accfae1ae2813c15a4b0c 100644
--- a/Framework/TestHelpers/inc/MantidTestHelpers/MDEventsTestHelper.h
+++ b/Framework/TestHelpers/inc/MantidTestHelpers/MDEventsTestHelper.h
@@ -69,7 +69,7 @@ void addMDDimensionsWithFrames(
 
     // Use the same frame for all dimensions
     auto dim = boost::make_shared<Mantid::Geometry::MDHistoDimension>(
-        axisNameFormat, axisIdFormat, frame, min, max, 10);
+        std::string(name), std::string(id), frame, min, max, 10);
     out->addDimension(dim);
   }
   out->initialize();
diff --git a/Framework/TestHelpers/src/MDAlgorithmsTestHelper.cpp b/Framework/TestHelpers/src/MDAlgorithmsTestHelper.cpp
index 024b3e7287f27ff122ebd72bdd3e8a8b0544c870..aff763280f6fee35ba72ac1409b19a657bcc4536 100644
--- a/Framework/TestHelpers/src/MDAlgorithmsTestHelper.cpp
+++ b/Framework/TestHelpers/src/MDAlgorithmsTestHelper.cpp
@@ -60,6 +60,50 @@ makeFileBackedMDEW(const std::string &wsName, bool fileBacked, long numEvents,
       Mantid::API::AnalysisDataService::Instance().retrieve(wsName));
 }
 
+/** Make a (optionally) file backed MDEventWorkspace with nEvents fake data
+ *points
+ * the points are randomly distributed within the box (nEvents>0) or
+ *homoheneously and regularly spread through the box (nEvents<0)
+ *
+ * @param wsName :: name of the workspace in ADS
+ * @param fileBacked :: true for file-backed
+ * @param frame:: the required frame
+ * @param numEvents :: number of events in the target workspace distributed
+ *randomly if numEvents>0 or regularly & homogeneously if numEvents<0
+ * @param coord :: Required coordinate system
+ * @return MDEW sptr
+ */
+DataObjects::MDEventWorkspace3Lean::sptr
+makeFileBackedMDEWwithMDFrame(const std::string &wsName, bool fileBacked,
+                              const Mantid::Geometry::MDFrame &frame,
+                              long numEvents,
+                              Kernel::SpecialCoordinateSystem coord) {
+  // ---------- Make a file-backed MDEventWorkspace -----------------------
+  std::string snEvents = boost::lexical_cast<std::string>(numEvents);
+  MDEventWorkspace3Lean::sptr ws1 =
+      MDEventsTestHelper::makeAnyMDEWWithFrames<MDLeanEvent<3>, 3>(
+          10, 0.0, 10.0, frame, 0);
+  ws1->getBoxController()->setSplitThreshold(100);
+  ws1->setCoordinateSystem(coord);
+  Mantid::API::AnalysisDataService::Instance().addOrReplace(
+      wsName, boost::dynamic_pointer_cast<Mantid::API::IMDEventWorkspace>(ws1));
+  FrameworkManager::Instance().exec("FakeMDEventData", 6, "InputWorkspace",
+                                    wsName.c_str(), "UniformParams",
+                                    snEvents.c_str(), "RandomizeSignal", "1");
+  if (fileBacked) {
+    std::string filename = wsName + ".nxs";
+    auto saver = FrameworkManager::Instance().exec(
+        "SaveMD", 4, "InputWorkspace", wsName.c_str(), "Filename",
+        filename.c_str());
+    FrameworkManager::Instance().exec(
+        "LoadMD", 8, "OutputWorkspace", wsName.c_str(), "Filename",
+        saver->getPropertyValue("Filename").c_str(), "FileBackEnd", "1",
+        "Memory", "0");
+  }
+  return boost::dynamic_pointer_cast<MDEventWorkspace3Lean>(
+      Mantid::API::AnalysisDataService::Instance().retrieve(wsName));
+}
+
 } // namespace
 }
 }