Skip to content
Snippets Groups Projects
Commit 61947ca5 authored by Michael Reuter's avatar Michael Reuter
Browse files

Refs #5453 and #5605. Changes to make reduction actually run.

Adding a lot of this pointers for clarification. Adding rebinning to
energy transfer conversion. Other fixes to get reduction running.
parent f7411e24
No related merge requests found
......@@ -66,19 +66,21 @@ namespace WorkflowAlgorithms
*/
void DgsConvertToEnergyTransfer::init()
{
declareProperty(new WorkspaceProperty<>("InputWorkspace", "", Direction::Input),
this->declareProperty(new WorkspaceProperty<>("InputWorkspace", "", Direction::Input),
"An input workspace.");
auto mustBePositive = boost::make_shared<BoundedValidator<double> >();
mustBePositive->setLower(0.0);
declareProperty("IncidentEnergy", EMPTY_DBL(), mustBePositive,
this->declareProperty("IncidentEnergy", EMPTY_DBL(), mustBePositive,
"Set the value of the incident energy in meV.");
declareProperty("FixedIncidentEnergy", false,
this->declareProperty("FixedIncidentEnergy", false,
"Declare the value of the incident energy to be fixed (will not be calculated).");
declareProperty(new ArrayProperty<double>("EnergyTransferRange",
boost::make_shared<RebinParamsValidator>()),
this->declareProperty(new ArrayProperty<double>("EnergyTransferRange",
boost::make_shared<RebinParamsValidator>(true)),
"A comma separated list of first bin boundary, width, last bin boundary.\n"
"Negative width value indicates logarithmic binning.");
declareProperty("ReductionProperties", "__dgs_reduction_properties", Direction::Input);
this->declareProperty(new WorkspaceProperty<>("OutputWorkspace", "",
Direction::Output, PropertyMode::Optional));
this->declareProperty("ReductionProperties", "__dgs_reduction_properties", Direction::Input);
}
//----------------------------------------------------------------------------------------------
......@@ -86,8 +88,9 @@ namespace WorkflowAlgorithms
*/
void DgsConvertToEnergyTransfer::exec()
{
g_log.notice() << "Starting DgsConvertToEnergyTransfer" << std::endl;
// Get the reduction property manager
const std::string reductionManagerName = getProperty("ReductionProperties");
const std::string reductionManagerName = this->getProperty("ReductionProperties");
boost::shared_ptr<PropertyManager> reductionManager;
if (PropertyManagerDataService::Instance().doesExist(reductionManagerName))
{
......@@ -99,12 +102,13 @@ namespace WorkflowAlgorithms
PropertyManagerDataService::Instance().addOrReplace(reductionManagerName, reductionManager);
}
MatrixWorkspace_const_sptr inputWS = getProperty("InputWorkspace");
MatrixWorkspace_const_sptr inputWS = this->getProperty("InputWorkspace");
const std::string inWsName = inputWS->getName();
// Calculate the initial energy and time zero
const std::string facility = ConfigService::Instance().getFacility().name();
auto ei_guess = getProperty("IncidentEnergy");
g_log.notice() << "Processing for " << facility << std::endl;
const double ei_guess = this->getProperty("IncidentEnergy");
double initial_energy = 0.0;
if ("SNS" == facility)
{
......@@ -131,9 +135,10 @@ namespace WorkflowAlgorithms
}
IAlgorithm_sptr alg = createSubAlgorithm("ChangeBinOffset");
alg->setPropertyValue("InputWorkspace", inWsName);
alg->setPropertyValue("OutputWorkspace", inWsName);
g_log.notice() << "Adjusting for T0" << std::endl;
IAlgorithm_sptr alg = this->createSubAlgorithm("ChangeBinOffset");
alg->setProperty("InputWorkspace", inWsName);
alg->setProperty("OutputWorkspace", inWsName);
alg->setProperty("Offset", -t0);
alg->execute();
}
......@@ -144,14 +149,28 @@ namespace WorkflowAlgorithms
}
// Convert to energy transfer
IAlgorithm_sptr cnvun = createSubAlgorithm("ConvertUnits");
cnvun->setPropertyValue("InputWorkspace", inWsName);
cnvun->setPropertyValue("OutputWorkspace", inWsName);
g_log.notice() << "Converting to energy transfer." << std::endl;
IAlgorithm_sptr cnvun = this->createSubAlgorithm("ConvertUnits");
cnvun->setProperty("InputWorkspace", inWsName);
cnvun->setProperty("OutputWorkspace", inWsName);
cnvun->setProperty("Target", "Wavelength");
cnvun->setProperty("EMode", "Direct");
cnvun->setProperty("EFixed", initial_energy);
cnvun->execute();
// Rebin if necessary
const std::vector<double> et_binning = this->getProperty("EnergyTransferRange");
if (!et_binning.empty())
{
g_log.notice() << "Rebinning data" << std::endl;
IAlgorithm_sptr rebin = this->createSubAlgorithm("Rebin");
rebin->setProperty("InputWorkspace", inWsName);
rebin->setProperty("OutputWorkspace", inWsName);
rebin->setProperty("Params", et_binning);
rebin->setProperty("PreserveEvents", false);
rebin->execute();
}
// Correct for detector efficiency
if ("SNS" == facility)
{
......@@ -160,9 +179,9 @@ namespace WorkflowAlgorithms
cnvun->execute();
// Do the correction
IAlgorithm_sptr alg2 = createSubAlgorithm("He3TubeEfficiency");
alg2->setPropertyValue("InputWorkspace", inWsName);
alg2->setPropertyValue("OutputWorkspace", inWsName);
IAlgorithm_sptr alg2 = this->createSubAlgorithm("He3TubeEfficiency");
alg2->setProperty("InputWorkspace", inWsName);
alg2->setProperty("OutputWorkspace", inWsName);
alg2->execute();
// Convert back to energy transfer
......@@ -172,27 +191,28 @@ namespace WorkflowAlgorithms
// Do ISIS
else
{
IAlgorithm_sptr alg = createSubAlgorithm("DetectorEfficiencyCor");
alg->setPropertyValue("InputWorkspace", inWsName);
alg->setPropertyValue("OutputWorkspace", inWsName);
IAlgorithm_sptr alg = this->createSubAlgorithm("DetectorEfficiencyCor");
alg->setProperty("InputWorkspace", inWsName);
alg->setProperty("OutputWorkspace", inWsName);
alg->execute();
}
// Correct for Ki/Kf
IAlgorithm_sptr kikf = createSubAlgorithm("CorrectKiKf");
kikf->setPropertyValue("InputWorkspace", inWsName);
kikf->setPropertyValue("OutputWorkspace", inWsName);
IAlgorithm_sptr kikf = this->createSubAlgorithm("CorrectKiKf");
kikf->setProperty("InputWorkspace", inWsName);
kikf->setProperty("OutputWorkspace", inWsName);
kikf->setProperty("EMode", "Direct");
kikf->execute();
// Should the workspace be cloned at any point?
std::string outWsName = inWsName + "_et";
IAlgorithm_sptr rename = createSubAlgorithm("RenameWorkspace");
rename->setPropertyValue("InputWorkspace", inWsName);
rename->setPropertyValue("OutputWorkspace", outWsName);
IAlgorithm_sptr rename = this->createSubAlgorithm("RenameWorkspace");
rename->setProperty("InputWorkspace", inWsName);
rename->setProperty("OutputWorkspace", outWsName);
rename->execute();
setPropertyValue("OutputWorkspace", outWsName);
MatrixWorkspace_sptr outputWS = AnalysisDataService::Instance().retrieveWS<MatrixWorkspace>(outWsName);
this->setProperty("OutputWorkspace", outputWS);
}
} // namespace Mantid
......
......@@ -82,7 +82,7 @@ namespace WorkflowAlgorithms
declareProperty("FixedIncidentEnergy", false,
"Declare the value of the incident energy to be fixed (will not be calculated).");
declareProperty(new ArrayProperty<double>("EnergyTransferRange",
boost::make_shared<RebinParamsValidator>()),
boost::make_shared<RebinParamsValidator>(true)),
"A comma separated list of first bin boundary, width, last bin boundary.\n"
"Negative width value indicates logarithmic binning.");
declareProperty("HardMaskFile", "", "A file or workspace containing a hard mask.");
......@@ -256,27 +256,27 @@ namespace WorkflowAlgorithms
const std::string facility = ConfigService::Instance().getFacility().name();
if ("SNS" == facility)
{
setLoadAlg("LoadEventNexus");
this->setLoadAlg("LoadEventNexus");
}
else
{
setLoadAlg("LoadRaw");
this->setLoadAlg("LoadRaw");
}
Workspace_sptr inputWS;
std::string inputData = getPropertyValue("SampleFile");
const std::string inputWSName = getPropertyValue("InputWorkspace");
std::string inputData = this->getPropertyValue("SampleFile");
const std::string inputWSName = this->getPropertyValue("InputWorkspace");
if (!inputWSName.empty() && !inputData.empty())
{
throw std::runtime_error("DgsReduction: Either the Filename property or InputWorkspace property must be provided, NOT BOTH");
}
else if (!inputWSName.empty())
{
inputWS = load(inputWSName);
inputWS = this->load(inputWSName);
}
else if (!inputData.empty())
{
inputWS = load(inputData);
inputWS = this->load(inputData);
}
else
{
......@@ -306,13 +306,16 @@ namespace WorkflowAlgorithms
Workspace_sptr inputWS = this->loadInputData();
// Setup for the convert to energy transfer workflow algorithm
const double initial_energy = getProperty("IncidentEnergy");
const bool fixed_ei = getProperty("FixedIncidentEnergy");
const double initial_energy = this->getProperty("IncidentEnergy");
const bool fixed_ei = this->getProperty("FixedIncidentEnergy");
const std::vector<double> et_binning = this->getProperty("EnergyTransferRange");
IAlgorithm_sptr et_conv = createSubAlgorithm("DgsConvertToEnergyTransfer");
IAlgorithm_sptr et_conv = this->createSubAlgorithm("DgsConvertToEnergyTransfer");
et_conv->setProperty("InputWorkspace", inputWS);
et_conv->setProperty("IncidentEnergy", initial_energy);
et_conv->setProperty("FixedIncidentEnergy", fixed_ei);
et_conv->setProperty("EnergyTransferRange", et_binning);
et_conv->execute();
}
} // namespace Mantid
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment