Skip to content
Snippets Groups Projects
Commit 5820b8e7 authored by Vickie Lynch's avatar Vickie Lynch
Browse files

Refs #8120 remove underscore so HKLTransform is in history

parent a77a2093
No related branches found
No related tags found
No related merge requests found
...@@ -97,7 +97,7 @@ namespace Crystal ...@@ -97,7 +97,7 @@ namespace Crystal
identity_matrix[8] = 1; identity_matrix[8] = 1;
auto threeBythree = boost::make_shared<ArrayLengthValidator<double> >(9); auto threeBythree = boost::make_shared<ArrayLengthValidator<double> >(9);
this->declareProperty( this->declareProperty(
new ArrayProperty<double>("HKL_Transform",identity_matrix,threeBythree), new ArrayProperty<double>("HKLTransform",identity_matrix,threeBythree),
"Specify 3x3 HKL transform matrix as a comma separated list of 9 numbers"); "Specify 3x3 HKL transform matrix as a comma separated list of 9 numbers");
this->declareProperty( this->declareProperty(
...@@ -132,7 +132,7 @@ namespace Crystal ...@@ -132,7 +132,7 @@ namespace Crystal
"ERROR: The stored UB is not a valid orientation matrix"); "ERROR: The stored UB is not a valid orientation matrix");
} }
std::vector<double> tran_vec = getProperty("HKL_Transform"); std::vector<double> tran_vec = getProperty("HKLTransform");
DblMatrix hkl_tran( tran_vec ); DblMatrix hkl_tran( tran_vec );
std::ostringstream str_stream; std::ostringstream str_stream;
......
...@@ -88,7 +88,7 @@ public: ...@@ -88,7 +88,7 @@ public:
TS_ASSERT_THROWS_NOTHING( alg.setPropertyValue("Tolerance","0.1") ); TS_ASSERT_THROWS_NOTHING( alg.setPropertyValue("Tolerance","0.1") );
// specify a matrix that will swap H and K and negate L // specify a matrix that will swap H and K and negate L
TS_ASSERT_THROWS_NOTHING( alg.setPropertyValue("HKL_Transform","0,1,0,1,0,0,0,0,-1") ); TS_ASSERT_THROWS_NOTHING( alg.setPropertyValue("HKLTransform","0,1,0,1,0,0,0,0,-1") );
TS_ASSERT_THROWS_NOTHING( alg.execute(); ); TS_ASSERT_THROWS_NOTHING( alg.execute(); );
TS_ASSERT( alg.isExecuted() ); TS_ASSERT( alg.isExecuted() );
......
...@@ -623,7 +623,7 @@ bool MantidEVWorker::changeHKL( const std::string & peaks_ws_name, ...@@ -623,7 +623,7 @@ bool MantidEVWorker::changeHKL( const std::string & peaks_ws_name,
IAlgorithm_sptr alg = AlgorithmManager::Instance().create("TransformHKL"); IAlgorithm_sptr alg = AlgorithmManager::Instance().create("TransformHKL");
alg->setProperty("PeaksWorkspace",peaks_ws_name); alg->setProperty("PeaksWorkspace",peaks_ws_name);
alg->setProperty("HKL_Transform",transf_string); alg->setProperty("HKLTransform",transf_string);
if ( alg->execute() ) if ( alg->execute() )
return true; return true;
......
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