Skip to content

Commit

Permalink
RE 6901 MantidEV usability
Browse files Browse the repository at this point in the history
Changed |Q| range to go up to 35.
Set MinRecursionDepth to 7 on ConvertToMD, to give
at least 128x128x128 boxes.  This makes the slice
viewer a bit more usable.

Refs #6901
  • Loading branch information
DennisMikkelson committed Apr 22, 2013
1 parent 2120323 commit b95c8d5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Code/Mantid/MantidQt/CustomInterfaces/src/MantidEVWorker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,12 @@ bool MantidEVWorker::loadAndConvertToMD( const std::string & file_name,
alg->setProperty("dEAnalysisMode","Elastic");
alg->setProperty("QConversionScales","Q in A^-1");
alg->setProperty("LorentzCorrection",true);
alg->setProperty("MinValues","-25,-25,-25");
alg->setProperty("MaxValues","25,25,25");
alg->setProperty("MinValues","-35,-35,-35");
alg->setProperty("MaxValues","35,35,35");
alg->setProperty("SplitInto","2");
alg->setProperty("SplitThreshold","50");
alg->setProperty("MaxRecursionDepth","13");
alg->setProperty("MinRecursionDepth","7");

if ( !alg->execute() )
return false;
Expand Down

0 comments on commit b95c8d5

Please sign in to comment.