diff --git a/qt/scientific_interfaces/ISISReflectometry/IReflMainWindowPresenter.h b/qt/scientific_interfaces/ISISReflectometry/IReflMainWindowPresenter.h
index 6695a4904a1caf70f507593c572749e390183658..6feeb8f33036c1571bca6947f21d7fa0d99b450c 100644
--- a/qt/scientific_interfaces/ISISReflectometry/IReflMainWindowPresenter.h
+++ b/qt/scientific_interfaces/ISISReflectometry/IReflMainWindowPresenter.h
@@ -50,10 +50,10 @@ public:
   virtual void notifyReductionResumed(int group) = 0;
 
   /// Transmission runs for a specific run angle
-  virtual std::string getTransmissionRunsForAngle(int group,
+  virtual std::string getOptionsForAngle(int group,
                                                   const double angle) const = 0;
   /// Whether there are per-angle transmission runs specified
-  virtual bool hasPerAngleTransmissionRuns(int group) const = 0;
+  virtual bool hasPerAngleOptions(int group) const = 0;
   /// Pre-processing
   virtual MantidWidgets::DataProcessor::OptionsQMap
   getTransmissionOptions(int group) const = 0;
diff --git a/qt/scientific_interfaces/ISISReflectometry/IReflSettingsPresenter.h b/qt/scientific_interfaces/ISISReflectometry/IReflSettingsPresenter.h
index 2ee9cdd937d1bd6af6b7ace02da2120120ecbd52..e340ba1248d4405022461fbd6fc445c572b897e1 100644
--- a/qt/scientific_interfaces/ISISReflectometry/IReflSettingsPresenter.h
+++ b/qt/scientific_interfaces/ISISReflectometry/IReflSettingsPresenter.h
@@ -42,9 +42,9 @@ class IReflSettingsPresenter {
 public:
   virtual ~IReflSettingsPresenter(){};
   /// Transmission runs for a particular angle
-  virtual std::string getTransmissionRunsForAngle(const double angle) const = 0;
+  virtual std::string getOptionsForAngle(const double angle) const = 0;
   /// Whether per-angle transmission runs are set
-  virtual bool hasPerAngleTransmissionRuns() const = 0;
+  virtual bool hasPerAngleOptions() const = 0;
   /// Pre-processing
   virtual MantidWidgets::DataProcessor::OptionsQMap
   getTransmissionOptions() const = 0;
diff --git a/qt/scientific_interfaces/ISISReflectometry/IReflSettingsTabPresenter.h b/qt/scientific_interfaces/ISISReflectometry/IReflSettingsTabPresenter.h
index 9d5c79653e72aa0364ede9414844c0ee71191c1a..b073b2e9c9921916ff34893b04ce86cdb411095e 100644
--- a/qt/scientific_interfaces/ISISReflectometry/IReflSettingsTabPresenter.h
+++ b/qt/scientific_interfaces/ISISReflectometry/IReflSettingsTabPresenter.h
@@ -40,10 +40,10 @@ class IReflSettingsTabPresenter {
 public:
   virtual ~IReflSettingsTabPresenter(){};
   /// Transmission runs for a particular run angle
-  virtual std::string getTransmissionRunsForAngle(int group,
+  virtual std::string getOptionsForAngle(int group,
                                                   const double angle) const = 0;
   /// Whether per-angle transmission runs are specified
-  virtual bool hasPerAngleTransmissionRuns(int group) const = 0;
+  virtual bool hasPerAngleOptions(int group) const = 0;
   /// Pre-processing
   virtual MantidWidgets::DataProcessor::OptionsQMap
   getTransmissionOptions(int group) const = 0;
diff --git a/qt/scientific_interfaces/ISISReflectometry/IReflSettingsView.h b/qt/scientific_interfaces/ISISReflectometry/IReflSettingsView.h
index 6d5865301e8a2212b8fc0a2375fad5a1bea89501..d5160b2ee4fae68ff69fd1c7c8b187eef51f932a 100644
--- a/qt/scientific_interfaces/ISISReflectometry/IReflSettingsView.h
+++ b/qt/scientific_interfaces/ISISReflectometry/IReflSettingsView.h
@@ -58,7 +58,7 @@ public:
 
   /// Experiment settings
   virtual std::string getAnalysisMode() const = 0;
-  virtual std::map<std::string, std::string> getTransmissionRuns() const = 0;
+  virtual std::map<std::string, std::string> getPerAngleOptions() const = 0;
   virtual std::string getStartOverlap() const = 0;
   virtual std::string getEndOverlap() const = 0;
   virtual std::string getPolarisationCorrections() const = 0;
diff --git a/qt/scientific_interfaces/ISISReflectometry/QtReflSettingsView.cpp b/qt/scientific_interfaces/ISISReflectometry/QtReflSettingsView.cpp
index 61303715cf3ecb8f1e96cb660a94d96729bc3141..ecbd164243949c4abea919d424aa700ff8c7538e 100644
--- a/qt/scientific_interfaces/ISISReflectometry/QtReflSettingsView.cpp
+++ b/qt/scientific_interfaces/ISISReflectometry/QtReflSettingsView.cpp
@@ -36,7 +36,7 @@ Initialise the Interface
 */
 void QtReflSettingsView::initLayout() {
   m_ui.setupUi(this);
-  initTransmissionRunsTable();
+  initPerAngleOptionsTable();
 
   connect(m_ui.getExpDefaultsButton, SIGNAL(clicked()), this,
           SLOT(requestExpDefaults()));
@@ -52,7 +52,7 @@ void QtReflSettingsView::initLayout() {
           SLOT(setDetectorCorrectionEnabled(bool)));
 }
 
-void QtReflSettingsView::initTransmissionRunsTable() {
+void QtReflSettingsView::initPerAngleOptionsTable() {
   auto table = m_ui.transmissionRunsTable;
   const auto columnHeadings = QStringList({"Angle", "Transmission Run(s)"});
   table->setColumnCount(columnHeadings.size());
@@ -444,7 +444,7 @@ std::string QtReflSettingsView::getAnalysisMode() const {
 * @return :: selected transmission run(s)
 */
 std::map<std::string, std::string>
-QtReflSettingsView::getTransmissionRuns() const {
+QtReflSettingsView::getPerAngleOptions() const {
 
   const auto &table = m_ui.transmissionRunsTable;
 
diff --git a/qt/scientific_interfaces/ISISReflectometry/QtReflSettingsView.h b/qt/scientific_interfaces/ISISReflectometry/QtReflSettingsView.h
index 7762e332288a5d8d2523846e95f4b1bc693bbedc..874c140995dcb83d399f1ee971c2592e857b07a7 100644
--- a/qt/scientific_interfaces/ISISReflectometry/QtReflSettingsView.h
+++ b/qt/scientific_interfaces/ISISReflectometry/QtReflSettingsView.h
@@ -56,7 +56,7 @@ public:
   /// Return selected analysis mode
   std::string getAnalysisMode() const override;
   /// Return transmission runs
-  std::map<std::string, std::string> getTransmissionRuns() const override;
+  std::map<std::string, std::string> getPerAngleOptions() const override;
   /// Return start overlap for transmission runs
   std::string getStartOverlap() const override;
   /// Return end overlap for transmission runs
@@ -140,7 +140,7 @@ public slots:
 private:
   /// Initialise the interface
   void initLayout();
-  void initTransmissionRunsTable();
+  void initPerAngleOptionsTable();
   void registerSettingsWidgets(Mantid::API::IAlgorithm_sptr alg);
   void registerInstrumentSettingsWidgets(Mantid::API::IAlgorithm_sptr alg);
   void registerExperimentSettingsWidgets(Mantid::API::IAlgorithm_sptr alg);
diff --git a/qt/scientific_interfaces/ISISReflectometry/ReflDataProcessorPresenter.cpp b/qt/scientific_interfaces/ISISReflectometry/ReflDataProcessorPresenter.cpp
index f176aec3669becf2c0e43a32ed93f6cc90b73000..9a6c1da777a64b47ee03ed54c435c94c7e3c03da 100644
--- a/qt/scientific_interfaces/ISISReflectometry/ReflDataProcessorPresenter.cpp
+++ b/qt/scientific_interfaces/ISISReflectometry/ReflDataProcessorPresenter.cpp
@@ -851,7 +851,7 @@ OptionsMap ReflDataProcessorPresenter::getProcessingOptions(RowData_sptr data) {
 
   // Get the angle for the current row. The angle is the second data item
   if (!hasAngle(data)) {
-    if (m_mainPresenter->hasPerAngleTransmissionRuns()) {
+    if (m_mainPresenter->hasPerAngleOptions()) {
       // The user has specified per-angle transmission runs on the settings
       // tab. In theory this is fine, but it could cause confusion when the
       // angle is not available in the data processor table because the
@@ -873,7 +873,7 @@ OptionsMap ReflDataProcessorPresenter::getProcessingOptions(RowData_sptr data) {
 
   // Insert the transmission runs as the "FirstTransmissionRun" property
   auto transmissionRuns =
-      m_mainPresenter->getTransmissionRunsForAngle(angle(data));
+      m_mainPresenter->getOptionsForAngle(angle(data));
   if (!transmissionRuns.isEmpty()) {
     options["FirstTransmissionRun"] = transmissionRuns;
   }
diff --git a/qt/scientific_interfaces/ISISReflectometry/ReflMainWindowPresenter.cpp b/qt/scientific_interfaces/ISISReflectometry/ReflMainWindowPresenter.cpp
index 98aece55c696f6ba5cee726a37b717155ba9a17b..aeeb90ed00d1303f421b6eedd8584df4a41a262d 100644
--- a/qt/scientific_interfaces/ISISReflectometry/ReflMainWindowPresenter.cpp
+++ b/qt/scientific_interfaces/ISISReflectometry/ReflMainWindowPresenter.cpp
@@ -162,20 +162,20 @@ std::string ReflMainWindowPresenter::getTimeSlicingType(int group) const {
 * @return :: Values passed for 'Transmission run(s)'
 */
 std::string
-ReflMainWindowPresenter::getTransmissionRunsForAngle(int group,
+ReflMainWindowPresenter::getOptionsForAngle(int group,
                                                      const double angle) const {
 
   checkSettingsPtrValid(m_settingsPresenter);
 
-  return m_settingsPresenter->getTransmissionRunsForAngle(group, angle);
+  return m_settingsPresenter->getOptionsForAngle(group, angle);
 }
 
 /** Returns whether there are per-angle transmission runs specified
  * @return :: true if there are per-angle transmission runs
  * */
-bool ReflMainWindowPresenter::hasPerAngleTransmissionRuns(int group) const {
+bool ReflMainWindowPresenter::hasPerAngleOptions(int group) const {
   checkSettingsPtrValid(m_settingsPresenter);
-  return m_settingsPresenter->hasPerAngleTransmissionRuns(group);
+  return m_settingsPresenter->hasPerAngleOptions(group);
 }
 
 /**
diff --git a/qt/scientific_interfaces/ISISReflectometry/ReflMainWindowPresenter.h b/qt/scientific_interfaces/ISISReflectometry/ReflMainWindowPresenter.h
index 5b68e1325b6d11f609da569650d9bee57b47ff7b..24c847687075250f3d0d7b5b408037b2c4756dbd 100644
--- a/qt/scientific_interfaces/ISISReflectometry/ReflMainWindowPresenter.h
+++ b/qt/scientific_interfaces/ISISReflectometry/ReflMainWindowPresenter.h
@@ -52,10 +52,10 @@ public:
   ~ReflMainWindowPresenter() override;
 
   /// Returns values passed for 'Transmission run(s)'
-  std::string getTransmissionRunsForAngle(int group,
+  std::string getOptionsForAngle(int group,
                                           const double angle) const override;
   /// Whether there are per-angle transmission runs specified
-  bool hasPerAngleTransmissionRuns(int group) const override;
+  bool hasPerAngleOptions(int group) const override;
   /// Returns global options for 'CreateTransmissionWorkspaceAuto'
   MantidWidgets::DataProcessor::OptionsQMap
   getTransmissionOptions(int group) const override;
diff --git a/qt/scientific_interfaces/ISISReflectometry/ReflRunsTabPresenter.cpp b/qt/scientific_interfaces/ISISReflectometry/ReflRunsTabPresenter.cpp
index 4b3753bc1c0252bdd4d4fc700a656a53d30e4d7e..4e17adc94d513743500fd019b19610d578d9e33d 100644
--- a/qt/scientific_interfaces/ISISReflectometry/ReflRunsTabPresenter.cpp
+++ b/qt/scientific_interfaces/ISISReflectometry/ReflRunsTabPresenter.cpp
@@ -476,16 +476,16 @@ QString ReflRunsTabPresenter::getTimeSlicingType() const {
 * @return :: Transmission run(s) as a comma-separated list
 */
 QString
-ReflRunsTabPresenter::getTransmissionRunsForAngle(const double angle) const {
-  return QString::fromStdString(m_mainPresenter->getTransmissionRunsForAngle(
+ReflRunsTabPresenter::getOptionsForAngle(const double angle) const {
+  return QString::fromStdString(m_mainPresenter->getOptionsForAngle(
       m_view->getSelectedGroup(), angle));
 }
 
 /** Check whether there are per-angle transmission runs in the settings
  * @return :: true if there are per-angle transmission runs
  */
-bool ReflRunsTabPresenter::hasPerAngleTransmissionRuns() const {
-  return m_mainPresenter->hasPerAngleTransmissionRuns(
+bool ReflRunsTabPresenter::hasPerAngleOptions() const {
+  return m_mainPresenter->hasPerAngleOptions(
       m_view->getSelectedGroup());
 }
 
diff --git a/qt/scientific_interfaces/ISISReflectometry/ReflRunsTabPresenter.h b/qt/scientific_interfaces/ISISReflectometry/ReflRunsTabPresenter.h
index 948192abbcbeebcf58527d563fc029492d9bbf1c..75fb2717553aad8c7b291d84f46b7f301d892843 100644
--- a/qt/scientific_interfaces/ISISReflectometry/ReflRunsTabPresenter.h
+++ b/qt/scientific_interfaces/ISISReflectometry/ReflRunsTabPresenter.h
@@ -77,8 +77,8 @@ public:
   QString getPostprocessingOptionsAsString() const override;
   QString getTimeSlicingValues() const override;
   QString getTimeSlicingType() const override;
-  QString getTransmissionRunsForAngle(const double angle) const override;
-  bool hasPerAngleTransmissionRuns() const override;
+  QString getOptionsForAngle(const double angle) const override;
+  bool hasPerAngleOptions() const override;
   /// Handle data reduction paused/resumed
   void pause() const override;
   void resume() const override;
diff --git a/qt/scientific_interfaces/ISISReflectometry/ReflSettingsPresenter.cpp b/qt/scientific_interfaces/ISISReflectometry/ReflSettingsPresenter.cpp
index 6e97347e3943dce56af2627775b46cbf776ff565..0e651306a6029758761737979905ec3a8bf11d4a 100644
--- a/qt/scientific_interfaces/ISISReflectometry/ReflSettingsPresenter.cpp
+++ b/qt/scientific_interfaces/ISISReflectometry/ReflSettingsPresenter.cpp
@@ -226,7 +226,7 @@ OptionsQMap ReflSettingsPresenter::getReductionOptions() const {
     // provide per-angle transmission runs, but these need to be
     // requested on a per-row basis when we know what the angle is
     // for that row.
-    auto transmissionRuns = getDefaultTransmissionRuns();
+    auto transmissionRuns = getDefaultOptions();
     addIfNotEmpty(options, "FirstTransmissionRun", transmissionRuns);
   }
 
@@ -258,20 +258,20 @@ OptionsQMap ReflSettingsPresenter::getReductionOptions() const {
 
 /** Check whether per-angle transmission runs are specified
  */
-bool ReflSettingsPresenter::hasPerAngleTransmissionRuns() const {
+bool ReflSettingsPresenter::hasPerAngleOptions() const {
   // Check the setting is enabled
   if (!m_view->experimentSettingsEnabled())
     return false;
 
   // Check we have some entries in the table
-  auto runsPerAngle = m_view->getTransmissionRuns();
+  auto runsPerAngle = m_view->getPerAngleOptions();
   if (runsPerAngle.empty())
     return false;
 
   // To save confusion, we only allow EITHER a default transmission runs string
   // OR multiple per-angle strings. Therefore if there is a default set there
   // cannot be per-angle runs.
-  if (!getDefaultTransmissionRuns().empty())
+  if (!getDefaultOptions().empty())
     return false;
 
   // Ok, we have some entries and they're not defaults, so assume they're valid
@@ -285,13 +285,13 @@ bool ReflSettingsPresenter::hasPerAngleTransmissionRuns() const {
 * @return :: the transmission run(s) as a string of comma-separated values
 * @throws :: if the settings the user entered are invalid
 */
-std::string ReflSettingsPresenter::getDefaultTransmissionRuns() const {
+std::string ReflSettingsPresenter::getDefaultOptions() const {
   if (!m_view->experimentSettingsEnabled())
     return std::string();
 
   // Values are entered as a map of angle to transmission runs. Loop
   // through them, checking for the required angle
-  auto runsPerAngle = m_view->getTransmissionRuns();
+  auto runsPerAngle = m_view->getPerAngleOptions();
   auto iter = runsPerAngle.find("");
   if (iter != runsPerAngle.end()) {
     // We found an empty angle. Check there is only one entry in the
@@ -313,15 +313,15 @@ std::string ReflSettingsPresenter::getDefaultTransmissionRuns() const {
 * @param angleToFind :: the run angle that transmission runs are valid for
 * @return :: the transmission run(s) as a string of comma-separated values
 */
-std::string ReflSettingsPresenter::getTransmissionRunsForAngle(
+std::string ReflSettingsPresenter::getOptionsForAngle(
     const double angleToFind) const {
   std::string result;
 
-  if (!hasPerAngleTransmissionRuns())
+  if (!hasPerAngleOptions())
     return result;
 
   // Values are entered as a map of angle to transmission runs
-  auto runsPerAngle = m_view->getTransmissionRuns();
+  auto runsPerAngle = m_view->getPerAngleOptions();
 
   // We use a generous tolerance to check the angle because values
   // from the log are not that accurate
diff --git a/qt/scientific_interfaces/ISISReflectometry/ReflSettingsPresenter.h b/qt/scientific_interfaces/ISISReflectometry/ReflSettingsPresenter.h
index 51a434b13047503362c3efb1bb2e77b013754a64..7a57045676f642fe80be81ce83a3eeb85edfa1c2 100644
--- a/qt/scientific_interfaces/ISISReflectometry/ReflSettingsPresenter.h
+++ b/qt/scientific_interfaces/ISISReflectometry/ReflSettingsPresenter.h
@@ -54,11 +54,11 @@ public:
 
   /// Returns per-angle values passed for 'Transmission run(s)'
   std::string
-  getTransmissionRunsForAngle(const double angleToFind) const override;
+  getOptionsForAngle(const double angleToFind) const override;
   /// Returns default values passed for 'Transmission run(s)'
-  std::string getDefaultTransmissionRuns() const;
+  std::string getDefaultOptions() const;
   /// Whether per-angle transmission runs are specified
-  bool hasPerAngleTransmissionRuns() const override;
+  bool hasPerAngleOptions() const override;
   /// Returns global options for 'CreateTransmissionWorkspaceAuto'
   MantidWidgets::DataProcessor::OptionsQMap
   getTransmissionOptions() const override;
diff --git a/qt/scientific_interfaces/ISISReflectometry/ReflSettingsTabPresenter.cpp b/qt/scientific_interfaces/ISISReflectometry/ReflSettingsTabPresenter.cpp
index 4d14e9d16d61b96901cae0bbd50e294a43d2c73b..61dd94b1990fcbdfcc0bd3dea3f4d307e78cb999 100644
--- a/qt/scientific_interfaces/ISISReflectometry/ReflSettingsTabPresenter.cpp
+++ b/qt/scientific_interfaces/ISISReflectometry/ReflSettingsTabPresenter.cpp
@@ -65,17 +65,17 @@ void ReflSettingsTabPresenter::onReductionPaused(int group) {
 * @param angle :: the run angle to look up transmission runs for
 * @return :: Values passed for 'Transmission run(s)'
 */
-std::string ReflSettingsTabPresenter::getTransmissionRunsForAngle(
+std::string ReflSettingsTabPresenter::getOptionsForAngle(
     int group, const double angle) const {
 
-  return m_settingsPresenters.at(group)->getTransmissionRunsForAngle(angle);
+  return m_settingsPresenters.at(group)->getOptionsForAngle(angle);
 }
 
 /** Check whether per-angle transmission runs are specified
  * @return :: true if per-angle transmission runs are specified
  */
-bool ReflSettingsTabPresenter::hasPerAngleTransmissionRuns(int group) const {
-  return m_settingsPresenters.at(group)->hasPerAngleTransmissionRuns();
+bool ReflSettingsTabPresenter::hasPerAngleOptions(int group) const {
+  return m_settingsPresenters.at(group)->hasPerAngleOptions();
 }
 
 /** Returns global options for 'CreateTransmissionWorkspaceAuto'
diff --git a/qt/scientific_interfaces/ISISReflectometry/ReflSettingsTabPresenter.h b/qt/scientific_interfaces/ISISReflectometry/ReflSettingsTabPresenter.h
index 3a04157dff2677d4cb946bde3b1418e3fe6a01c0..eaadb49e11af713cdc386ff5978960f676b82b94 100644
--- a/qt/scientific_interfaces/ISISReflectometry/ReflSettingsTabPresenter.h
+++ b/qt/scientific_interfaces/ISISReflectometry/ReflSettingsTabPresenter.h
@@ -55,10 +55,10 @@ public:
   passSelfToChildren(std::vector<IReflSettingsPresenter *> const &children);
 
   /// Returns values passed for 'Transmission run(s)'
-  std::string getTransmissionRunsForAngle(int group,
+  std::string getOptionsForAngle(int group,
                                           const double angle) const override;
   /// Whether per-angle tranmsission runs are set
-  bool hasPerAngleTransmissionRuns(int group) const override;
+  bool hasPerAngleOptions(int group) const override;
   /// Returns global options for 'CreateTransmissionWorkspaceAuto'
   MantidWidgets::DataProcessor::OptionsQMap
   getTransmissionOptions(int group) const override;
diff --git a/qt/scientific_interfaces/test/ReflMainWindowPresenterTest.h b/qt/scientific_interfaces/test/ReflMainWindowPresenterTest.h
index e8b3e1c1822f1bab8b72f323fe2164a092d66e74..c1fa7511d98e56b75dd6f86dd67c8c52b52828a2 100644
--- a/qt/scientific_interfaces/test/ReflMainWindowPresenterTest.h
+++ b/qt/scientific_interfaces/test/ReflMainWindowPresenterTest.h
@@ -40,13 +40,13 @@ public:
 
     // Should call the settings tab to get the values
     double angle = 0.5;
-    EXPECT_CALL(mockSettingsTabPresenter, getTransmissionRunsForAngle(0, angle))
+    EXPECT_CALL(mockSettingsTabPresenter, getOptionsForAngle(0, angle))
         .Times(Exactly(1));
-    presenter.getTransmissionRunsForAngle(0, angle);
+    presenter.getOptionsForAngle(0, angle);
 
-    EXPECT_CALL(mockSettingsTabPresenter, getTransmissionRunsForAngle(1, angle))
+    EXPECT_CALL(mockSettingsTabPresenter, getOptionsForAngle(1, angle))
         .Times(Exactly(1));
-    presenter.getTransmissionRunsForAngle(1, angle);
+    presenter.getOptionsForAngle(1, angle);
 
     TS_ASSERT(Mock::VerifyAndClearExpectations(&mockSettingsTabPresenter));
   }
diff --git a/qt/scientific_interfaces/test/ReflMockObjects.h b/qt/scientific_interfaces/test/ReflMockObjects.h
index 83cc819b18436dd085fdba40c25e8af45ffe3d86..40901d6f467360ce851df33f3ac8aabfbef862f5 100644
--- a/qt/scientific_interfaces/test/ReflMockObjects.h
+++ b/qt/scientific_interfaces/test/ReflMockObjects.h
@@ -106,7 +106,7 @@ public:
   MOCK_CONST_METHOD0(getProcessingInstructions, std::string());
   MOCK_CONST_METHOD0(getSummationType, std::string());
   MOCK_CONST_METHOD0(getReductionType, std::string());
-  MOCK_CONST_METHOD0(getTransmissionRuns, std::map<std::string, std::string>());
+  MOCK_CONST_METHOD0(getPerAngleOptions, std::map<std::string, std::string>());
   MOCK_CONST_METHOD1(setIsPolCorrEnabled, void(bool));
   MOCK_METHOD1(setReductionTypeEnabled, void(bool));
   MOCK_METHOD1(setPolarisationOptionsEnabled, void(bool));
@@ -220,8 +220,8 @@ public:
 
 class MockSettingsPresenter : public IReflSettingsPresenter {
 public:
-  MOCK_CONST_METHOD1(getTransmissionRunsForAngle, std::string(const double));
-  MOCK_CONST_METHOD0(hasPerAngleTransmissionRuns, bool());
+  MOCK_CONST_METHOD1(getOptionsForAngle, std::string(const double));
+  MOCK_CONST_METHOD0(hasPerAngleOptions, bool());
   MOCK_CONST_METHOD0(getTransmissionOptions, OptionsQMap());
   MOCK_CONST_METHOD0(getReductionOptions, OptionsQMap());
   MOCK_CONST_METHOD0(getStitchOptions, std::string());
@@ -238,9 +238,9 @@ public:
 
 class MockSettingsTabPresenter : public IReflSettingsTabPresenter {
 public:
-  MOCK_CONST_METHOD2(getTransmissionRunsForAngle,
+  MOCK_CONST_METHOD2(getOptionsForAngle,
                      std::string(int, const double));
-  MOCK_CONST_METHOD1(hasPerAngleTransmissionRuns, bool(int));
+  MOCK_CONST_METHOD1(hasPerAngleOptions, bool(int));
   MOCK_CONST_METHOD0(getTransmissionOptions, OptionsQMap());
   MOCK_CONST_METHOD1(getTransmissionOptions, OptionsQMap(int));
   MOCK_CONST_METHOD1(getReductionOptions, OptionsQMap(int));
@@ -269,9 +269,9 @@ public:
 
 class MockMainWindowPresenter : public IReflMainWindowPresenter {
 public:
-  MOCK_CONST_METHOD2(getTransmissionRunsForAngle,
+  MOCK_CONST_METHOD2(getOptionsForAngle,
                      std::string(int, const double));
-  MOCK_CONST_METHOD1(hasPerAngleTransmissionRuns, bool(int));
+  MOCK_CONST_METHOD1(hasPerAngleOptions, bool(int));
   MOCK_CONST_METHOD1(getTransmissionOptions, OptionsQMap(int));
   MOCK_CONST_METHOD1(getReductionOptions, OptionsQMap(int));
   MOCK_CONST_METHOD1(getStitchOptions, std::string(int));
diff --git a/qt/scientific_interfaces/test/ReflSettingsPresenterTest.h b/qt/scientific_interfaces/test/ReflSettingsPresenterTest.h
index 7056fc52d466cb3a64b8af21034e7b4be66e28d7..da1de2ce63280668ef66e3ddba1ef70170db46b9 100644
--- a/qt/scientific_interfaces/test/ReflSettingsPresenterTest.h
+++ b/qt/scientific_interfaces/test/ReflSettingsPresenterTest.h
@@ -58,7 +58,7 @@ public:
 
   void onCallReturnDefaultExperimentSettings(MockSettingsView &mockView) {
     ON_CALL(mockView, experimentSettingsEnabled()).WillByDefault(Return(true));
-    onCallReturnDefaultTransmissionRuns(mockView);
+    onCallReturnDefaultOptions(mockView);
     onCallReturnDefaultAnalysisMode(mockView);
     onCallReturnDefaultOverlap(mockView);
     onCallReturnDefaultPolarisationCorrections(mockView);
@@ -72,8 +72,8 @@ public:
         .WillByDefault(Return("PointDetectorAnalysis"));
   }
 
-  void onCallReturnDefaultTransmissionRuns(MockSettingsView &mockView) {
-    ON_CALL(mockView, getTransmissionRuns())
+  void onCallReturnDefaultOptions(MockSettingsView &mockView) {
+    ON_CALL(mockView, getPerAngleOptions())
         .WillByDefault(Return(std::map<std::string, std::string>()));
   }
 
@@ -390,7 +390,7 @@ public:
     std::map<std::string, std::string> transmissionRunsMap = {
         {"", "INTER00013463,INTER00013464"}};
 
-    EXPECT_CALL(mockView, getTransmissionRuns())
+    EXPECT_CALL(mockView, getPerAngleOptions())
         .Times(AtLeast(1))
         .WillOnce(Return(transmissionRunsMap));
 
@@ -574,7 +574,7 @@ public:
   void testInstrumentSettingsDisabled() {
     NiceMock<MockSettingsView> mockView;
     auto presenter = makeReflSettingsPresenter(&mockView);
-    onCallReturnDefaultTransmissionRuns(mockView);
+    onCallReturnDefaultOptions(mockView);
 
     EXPECT_CALL(mockView, experimentSettingsEnabled())
         .Times(4)
@@ -607,7 +607,7 @@ public:
     EXPECT_CALL(mockView, getMomentumTransferStep()).Times(Exactly(1));
     EXPECT_CALL(mockView, getStartOverlap()).Times(Exactly(2));
     EXPECT_CALL(mockView, getEndOverlap()).Times(Exactly(2));
-    EXPECT_CALL(mockView, getTransmissionRuns()).Times(Exactly(1));
+    EXPECT_CALL(mockView, getPerAngleOptions()).Times(Exactly(1));
     EXPECT_CALL(mockView, getStitchOptions()).Times(Exactly(1));
 
     auto transmissionOptions = presenter.getTransmissionOptions();
@@ -629,11 +629,11 @@ public:
     EXPECT_CALL(mockView, experimentSettingsEnabled())
         .Times(1)
         .WillRepeatedly(Return(true));
-    EXPECT_CALL(mockView, getTransmissionRuns())
+    EXPECT_CALL(mockView, getPerAngleOptions())
         .Times(1)
         .WillOnce(Return(transmissionRunsMap));
 
-    auto result = presenter.getDefaultTransmissionRuns();
+    auto result = presenter.getDefaultOptions();
     TS_ASSERT_EQUALS(result, "INTER00013463,INTER00013464");
 
     TS_ASSERT(Mock::VerifyAndClearExpectations(&mockView));
@@ -653,13 +653,13 @@ public:
     EXPECT_CALL(mockView, experimentSettingsEnabled())
         .Times(4)
         .WillRepeatedly(Return(true));
-    EXPECT_CALL(mockView, getTransmissionRuns())
+    EXPECT_CALL(mockView, getPerAngleOptions())
         .Times(6)
         .WillRepeatedly(Return(transmissionRunsMap));
 
-    auto result = presenter.getTransmissionRunsForAngle(0.69);
+    auto result = presenter.getOptionsForAngle(0.69);
     TS_ASSERT_EQUALS(result, "INTER00013463,INTER00013464");
-    result = presenter.getTransmissionRunsForAngle(2.34);
+    result = presenter.getOptionsForAngle(2.34);
     TS_ASSERT_EQUALS(result, "INTER00013463");
 
     TS_ASSERT(Mock::VerifyAndClearExpectations(&mockView));
diff --git a/qt/scientific_interfaces/test/ReflSettingsTabPresenterTest.h b/qt/scientific_interfaces/test/ReflSettingsTabPresenterTest.h
index 20f049580bd1886fa1f31d813a13a28ea5ec3a71..3f13758585ebf816b6021e04f5eaa5c8a517f77f 100644
--- a/qt/scientific_interfaces/test/ReflSettingsTabPresenterTest.h
+++ b/qt/scientific_interfaces/test/ReflSettingsTabPresenterTest.h
@@ -74,26 +74,26 @@ public:
 
     // Should only call though to the settings presenter for
     // the specified group
-    EXPECT_CALL(presenter_0, getTransmissionRunsForAngle(angle)).Times(1);
-    EXPECT_CALL(presenter_1, getTransmissionRunsForAngle(angle)).Times(0);
-    EXPECT_CALL(presenter_2, getTransmissionRunsForAngle(angle)).Times(0);
-    presenter.getTransmissionRunsForAngle(0, angle);
+    EXPECT_CALL(presenter_0, getOptionsForAngle(angle)).Times(1);
+    EXPECT_CALL(presenter_1, getOptionsForAngle(angle)).Times(0);
+    EXPECT_CALL(presenter_2, getOptionsForAngle(angle)).Times(0);
+    presenter.getOptionsForAngle(0, angle);
     TS_ASSERT(Mock::VerifyAndClearExpectations(&presenter_0));
     TS_ASSERT(Mock::VerifyAndClearExpectations(&presenter_1));
     TS_ASSERT(Mock::VerifyAndClearExpectations(&presenter_2));
 
-    EXPECT_CALL(presenter_0, getTransmissionRunsForAngle(angle)).Times(0);
-    EXPECT_CALL(presenter_1, getTransmissionRunsForAngle(angle)).Times(1);
-    EXPECT_CALL(presenter_2, getTransmissionRunsForAngle(angle)).Times(0);
-    presenter.getTransmissionRunsForAngle(1, angle);
+    EXPECT_CALL(presenter_0, getOptionsForAngle(angle)).Times(0);
+    EXPECT_CALL(presenter_1, getOptionsForAngle(angle)).Times(1);
+    EXPECT_CALL(presenter_2, getOptionsForAngle(angle)).Times(0);
+    presenter.getOptionsForAngle(1, angle);
     TS_ASSERT(Mock::VerifyAndClearExpectations(&presenter_0));
     TS_ASSERT(Mock::VerifyAndClearExpectations(&presenter_1));
     TS_ASSERT(Mock::VerifyAndClearExpectations(&presenter_2));
 
-    EXPECT_CALL(presenter_0, getTransmissionRunsForAngle(angle)).Times(0);
-    EXPECT_CALL(presenter_1, getTransmissionRunsForAngle(angle)).Times(0);
-    EXPECT_CALL(presenter_2, getTransmissionRunsForAngle(angle)).Times(1);
-    presenter.getTransmissionRunsForAngle(2, angle);
+    EXPECT_CALL(presenter_0, getOptionsForAngle(angle)).Times(0);
+    EXPECT_CALL(presenter_1, getOptionsForAngle(angle)).Times(0);
+    EXPECT_CALL(presenter_2, getOptionsForAngle(angle)).Times(1);
+    presenter.getOptionsForAngle(2, angle);
     TS_ASSERT(Mock::VerifyAndClearExpectations(&presenter_0));
     TS_ASSERT(Mock::VerifyAndClearExpectations(&presenter_1));
     TS_ASSERT(Mock::VerifyAndClearExpectations(&presenter_2));
diff --git a/qt/widgets/common/inc/MantidQtWidgets/Common/DataProcessorUI/DataProcessorMainPresenter.h b/qt/widgets/common/inc/MantidQtWidgets/Common/DataProcessorUI/DataProcessorMainPresenter.h
index 1ddcb5853cd3e604958dcd0092a0c1e3d55249c9..2e2066d0afa31e0f7c7291ff9c0cfa43367929a6 100644
--- a/qt/widgets/common/inc/MantidQtWidgets/Common/DataProcessorUI/DataProcessorMainPresenter.h
+++ b/qt/widgets/common/inc/MantidQtWidgets/Common/DataProcessorUI/DataProcessorMainPresenter.h
@@ -67,12 +67,12 @@ public:
   /// Return time-slicing type
   virtual QString getTimeSlicingType() const { return QString(); }
   /// Return transmission runs for a particular angle
-  virtual QString getTransmissionRunsForAngle(const double angle) const {
+  virtual QString getOptionsForAngle(const double angle) const {
     UNUSED_ARG(angle);
     return QString();
   }
   /// Return true if there are per-angle transmission runs set
-  virtual bool hasPerAngleTransmissionRuns() const { return false; }
+  virtual bool hasPerAngleOptions() const { return false; }
 
   /// Handle data reduction paused/resumed
   virtual void pause() const {}