diff --git a/MantidQt/CustomInterfaces/src/Indirect/ContainerSubtraction.cpp b/MantidQt/CustomInterfaces/src/Indirect/ContainerSubtraction.cpp index 0992f1d648ee3dc5ce1a59abc80e75be61dd3ea9..7a649c3335f2bba2f2dc6214c9b20f78236b563e 100644 --- a/MantidQt/CustomInterfaces/src/Indirect/ContainerSubtraction.cpp +++ b/MantidQt/CustomInterfaces/src/Indirect/ContainerSubtraction.cpp @@ -36,6 +36,8 @@ void ContainerSubtraction::run() { sampleWsName.toStdString()); m_originalSampleUnits = sampleWs->getAxis(0)->unit()->unitID(); + + // If not in wavelength then do conversion if (m_originalSampleUnits != "Wavelength") { g_log.information( @@ -51,6 +53,16 @@ void ContainerSubtraction::run() { AnalysisDataService::Instance().retrieveWS<MatrixWorkspace>( canWsName.toStdString()); + if (m_uiForm.ckShiftCan->isChecked()) { + IAlgorithm_sptr scaleX = AlgorithmManager::Instance().create("ScaleX"); + scaleX->initialize(); + scaleX->setProperty("InputWorkspace", canWs); + scaleX->setProperty("OutputWorkspace", canWs->getName()); + scaleX->setProperty("Factor", m_uiForm.spShift->value()); + scaleX->setProperty("Operation", "Add"); + scaleX->execute(); + } + // If not in wavelength then do conversion std::string originalCanUnits = canWs->getAxis(0)->unit()->unitID(); if (originalCanUnits != "Wavelength") {