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

More descriptive name for axis unit properties. This refs #2288.

parent 56882569
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,8 @@ namespace DataHandling
<UL>
<LI> OutputWorkspace - The workspace name to produce. </LI>
<LI> Filename - The filename for input </LI>
<LI> X-Axis Units - The units for the x-axis </LI>
<LI> Y-Axis Units - The units for the y-axis </LI>
</UL>
@author Michael Reuter ISIS Rutherford Appleton Laboratory & NScD Oak Ridge National Laboratory
......
......@@ -31,13 +31,13 @@ void LoadDaveGrp::init()
"The name of the workspace that will be created.");
// Extract the current contents of the UnitFactory to be the allowed values
// of the X-Axis property
this->declareProperty("X-Axis", "",
this->declareProperty("X-Axis Units", "",
new Kernel::ListValidator(Kernel::UnitFactory::Instance().getKeys()),
"The name of the units for the X-Axis (must be one of those registered in\n"
"the Unit Factory)");
// Extract the current contents of the UnitFactory to be the allowed values
// of the Y-Axis property
this->declareProperty("Y-Axis", "MomentumTransfer",
this->declareProperty("Y-Axis Units", "MomentumTransfer",
new Kernel::ListValidator(Kernel::UnitFactory::Instance().getKeys()),
"The name of the units for the Y-Axis (must be one of those registered in\n"
"the Unit Factory)");
......@@ -82,11 +82,11 @@ void LoadDaveGrp::exec()
outputWorkspace->isDistribution(true);
// Set the x-axis units
outputWorkspace->getAxis(0)->unit() = Kernel::UnitFactory::Instance().create(this->getProperty("X-Axis"));
outputWorkspace->getAxis(0)->unit() = Kernel::UnitFactory::Instance().create(this->getProperty("X-Axis Units"));
API::Axis* const verticalAxis = new API::NumericAxis(yLength);
// Set the y-axis units
verticalAxis->unit() = Kernel::UnitFactory::Instance().create(this->getProperty("Y-Axis"));
verticalAxis->unit() = Kernel::UnitFactory::Instance().create(this->getProperty("Y-Axis Units"));
outputWorkspace->replaceAxis(1, verticalAxis);
......
......@@ -20,8 +20,8 @@ public:
"DaveAscii.grp"));
TS_ASSERT_THROWS_NOTHING(loader.setPropertyValue("OutputWorkspace",
outputWSName));
TS_ASSERT_THROWS_NOTHING(loader.setPropertyValue("X-Axis", "DeltaE"));
TS_ASSERT_THROWS_NOTHING(loader.setPropertyValue("Y-Axis",
TS_ASSERT_THROWS_NOTHING(loader.setPropertyValue("X-Axis Units", "DeltaE"));
TS_ASSERT_THROWS_NOTHING(loader.setPropertyValue("Y-Axis Units",
"MomentumTransfer"));
loader.execute();
......
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