diff --git a/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/FilterEvents.h b/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/FilterEvents.h index edc4acff66beecb8a1a24a642e2f682b30f41714..ac563068024ae9473537f6a7228a52683aee0658 100644 --- a/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/FilterEvents.h +++ b/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/FilterEvents.h @@ -14,6 +14,8 @@ namespace Mantid { namespace Algorithms { +class TimeAtSampleStrategy; + /** FilterEvents : Filter Events in EventWorkspace to multiple EventsWorkspace by Splitters @@ -92,15 +94,15 @@ private: void setupDetectorTOFCalibration(); /// Set up detector calibration parameters for elastic scattering instrument - void setupElasticTOFCorrection(API::MatrixWorkspace_sptr corrws); + TimeAtSampleStrategy* setupElasticTOFCorrection() const; /// Set up detector calibration parmaeters for direct inelastic scattering /// instrument - void setupDirectTOFCorrection(API::MatrixWorkspace_sptr corrws); + TimeAtSampleStrategy* setupDirectTOFCorrection() const; /// Set up detector calibration parameters for indirect inelastic scattering /// instrument - void setupIndirectTOFCorrection(API::MatrixWorkspace_sptr corrws); + TimeAtSampleStrategy* setupIndirectTOFCorrection() const; /// Set up detector calibration parameters from customized values void setupCustomizedTOFCorrection(); diff --git a/Code/Mantid/Framework/Algorithms/src/FilterEvents.cpp b/Code/Mantid/Framework/Algorithms/src/FilterEvents.cpp index 36662ad8dca79c2dac58a46fb2d127c33b16463c..cf0fb291f7c774c0abb89c9e4fed0a75d62aac00 100644 --- a/Code/Mantid/Framework/Algorithms/src/FilterEvents.cpp +++ b/Code/Mantid/Framework/Algorithms/src/FilterEvents.cpp @@ -16,7 +16,7 @@ #include "MantidKernel/LogFilter.h" #include "MantidKernel/PhysicalConstants.h" #include "MantidKernel/ArrayProperty.h" - +#include <memory> #include <sstream> using namespace Mantid; @@ -574,7 +574,7 @@ void FilterEvents::createOutputWorkspaces() { */ void FilterEvents::setupDetectorTOFCalibration() { // Set output correction workspace and set to output - size_t numhist = m_eventWS->getNumberHistograms(); + const size_t numhist = m_eventWS->getNumberHistograms(); MatrixWorkspace_sptr corrws = boost::dynamic_pointer_cast<MatrixWorkspace>( WorkspaceFactory::Instance().create("Workspace2D", numhist, 2, 2)); setProperty("OutputTOFCorrectionWorkspace", corrws); @@ -584,50 +584,43 @@ void FilterEvents::setupDetectorTOFCalibration() { m_detTofShifts.resize(numhist, 0.0); // Set up detector values + std::unique_ptr<TimeAtSampleStrategy> strategy; + if (m_tofCorrType == CustomizedCorrect) { setupCustomizedTOFCorrection(); } else if (m_tofCorrType == ElasticCorrect) { // Generate TOF correction from instrument's set up - setupElasticTOFCorrection(corrws); + strategy.reset(setupElasticTOFCorrection()); } else if (m_tofCorrType == DirectCorrect) { // Generate TOF correction for direct inelastic instrument - setupDirectTOFCorrection(corrws); + strategy.reset(setupDirectTOFCorrection()); } else if (m_tofCorrType == IndirectCorrect) { // Generate TOF correction for indirect elastic instrument - setupIndirectTOFCorrection(corrws); + strategy.reset(setupIndirectTOFCorrection()); } + if (strategy) { + for (size_t i = 0; i < numhist; ++i) { + if (!m_vecSkip[i]) { - return; -} - -//---------------------------------------------------------------------------------------------- -/** - */ -void FilterEvents::setupElasticTOFCorrection(API::MatrixWorkspace_sptr corrws) { - - TimeAtSampleStrategyElastic strategy(m_eventWS); - - // Get - size_t numhist = m_eventWS->getNumberHistograms(); - for (size_t i = 0; i < numhist; ++i) { - if (!m_vecSkip[i]) { - - Correction correction = strategy.calculate(i); + Correction correction = strategy->calculate(i); + m_detTofOffsets[i] = correction.offset; + m_detTofShifts[i] = correction.factor; - m_detTofOffsets[i] = correction.offset; - corrws->dataY(i)[0] = correction.factor; + corrws->dataY(i)[0] = correction.offset; + corrws->dataY(i)[1] = correction.factor; + } } } return; } -//---------------------------------------------------------------------------------------------- -/** Calculate TOF correction for direct geometry inelastic instrument - * Time = T_pulse + TOF*0 + L1/sqrt(E*2/m) - */ -void FilterEvents::setupDirectTOFCorrection(API::MatrixWorkspace_sptr corrws) { +TimeAtSampleStrategy *FilterEvents::setupElasticTOFCorrection() const { + + return new TimeAtSampleStrategyElastic(m_eventWS); +} +TimeAtSampleStrategy *FilterEvents::setupDirectTOFCorrection() const { // Get incident energy Ei double ei = 0.; @@ -643,45 +636,11 @@ void FilterEvents::setupDirectTOFCorrection(API::MatrixWorkspace_sptr corrws) { g_log.debug() << "Using user-input Ei value " << ei << "\n"; } - TimeAtSampleStrategyDirect strategy(m_eventWS, ei); - - size_t numhist = m_eventWS->getNumberHistograms(); - for (size_t i = 0; i < numhist; ++i) { - - Correction correction = strategy.calculate(i); - m_detTofOffsets[i] = correction.offset; - m_detTofShifts[i] = correction.factor; - - corrws->dataY(i)[0] = correction.offset; - corrws->dataY(i)[1] = correction.factor; - } - - return; + return new TimeAtSampleStrategyDirect(m_eventWS, ei); } -//---------------------------------------------------------------------------------------------- -/** Calculate TOF correction for indirect geometry inelastic instrument - * Time = T_pulse + TOF - L2/sqrt(E_fix * 2 * meV / mass) - */ -void -FilterEvents::setupIndirectTOFCorrection(API::MatrixWorkspace_sptr corrws) { - g_log.debug("Start to set up indirect TOF correction. "); - - TimeAtSampleStrategyIndirect strategy(m_eventWS); - - size_t numhist = m_eventWS->getNumberHistograms(); - for (size_t i = 0; i < numhist; ++i) { - - Correction correction = strategy.calculate(i); - m_detTofOffsets[i] = correction.offset; - m_detTofShifts[i] = correction.factor; - - corrws->dataY(i)[0] = correction.offset; - corrws->dataY(i)[1] = correction.factor; - } - - - return; +TimeAtSampleStrategy *FilterEvents::setupIndirectTOFCorrection() const { + return new TimeAtSampleStrategyIndirect(m_eventWS); } //----------------------------------------------------------------------------------------------