Skip to content

Commit

Permalink
refs #4572 changes to default values caused by bug ref #4590
Browse files Browse the repository at this point in the history
Allows to use algorithm from GUI until the bug is fixed.
  • Loading branch information
abuts committed Jan 22, 2012
1 parent edea36d commit 089842d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/Framework/MDAlgorithms/src/ConvertToMDEvents.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ ConvertToMDEvents::init()


/// this variable describes default possible ID-s for Q-dimensions
declareProperty("QDimensions",Q_modes[modQ],new ListValidator(Q_modes),
declareProperty("QDimensions",Q_modes[NoQ],new ListValidator(Q_modes),
"You can to transfer source workspace dimensions into target workspace directly """" (NoQ), transform into mod(Q) (1 dimension) or QhQkQl (3 dimensions) in Q space",Direction::InOut);
// this switch allows to make units expressed in HKL, hkl is currently not supported by units conversion so the resulting workspace can not be subject to unit conversion
declareProperty(new PropertyWithValue<bool>("QinHKL", false, Direction::Input),
Expand Down Expand Up @@ -310,7 +310,7 @@ void ConvertToMDEvents::exec()
//d) part of the procedure, specifying the target dimensions units. Currently only Q3D target units can be converted to hkl
bool convert_to_hkl = getProperty("QinHKL");

// Identify the algorithm to deploy and identify/set the (multi)dimension names to use
// Identify the algorithm to deploy and identify/set the (multi)dimension's names to use
algo_id = identifyTheAlg(inWS2D,Q_mod_req,dE_mod_req,other_dim_names,convert_to_hkl,TWS);

// set the min and max values for the dimensions from the input porperties
Expand Down

0 comments on commit 089842d

Please sign in to comment.