Skip to content

Commit

Permalink
refs #6091 Hopefully removed references to convertToMDEvents
Browse files Browse the repository at this point in the history
from the ConvToMDWS interface
  • Loading branch information
abuts committed Nov 9, 2012
1 parent a7aead1 commit 89d757e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ The fourth dimension will be equal to the bank number, allowing you to easily pi
#include "MantidAPI/MatrixWorkspace.h"
#include "MantidKernel/ArrayLengthValidator.h"
#include "MantidDataObjects/EventWorkspace.h"
//#include "MantidMDAlgorithms/ConvertToMDEvents.h"
#include "MantidKernel/Strings.h"
#include "MantidGeometry/Instrument/RectangularDetector.h"
#include "MantidKernel/ArrayProperty.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ void CreateMDWorkspace::createMDWorkspaceClicked()
if(keepWorkspaceInADS)
{
command = "try:\n"
" ConvertToMDEvents(InputWorkspace='%1',OutputWorkspace='%1_md',MaxRecursionDepth=1,MinRecursionDepth=1,OtherDimensions='%2',dEAnalysisMode='%3',QDimensions='%4',MinValues='%5',MaxValues='%6',UsePreprocessedDetectors='%7')\n"
" ConvertToMD(InputWorkspace='%1',OutputWorkspace='%1_md',MaxRecursionDepth=1,MinRecursionDepth=1,OtherDimensions='%2',dEAnalysisMode='%3',QDimensions='%4',MinValues='%5',MaxValues='%6',UsePreprocessedDetectors='%7')\n"
" SaveMD(InputWorkspace='%1_md', Filename=r'%8/%1_md.nxs',MakeFileBacked='1')\n"
"except:\n"
" print 'FAIL'\n"
Expand All @@ -603,7 +603,7 @@ void CreateMDWorkspace::createMDWorkspaceClicked()
else
{
command = "try:\n"
" ConvertToMDEvents(InputWorkspace='%1',OutputWorkspace='%1_md',MaxRecursionDepth=1,MinRecursionDepth=1,OtherDimensions='%2',dEAnalysisMode='%3',QDimensions='%4',MinValues='%5',MaxValues='%6',UsePreprocessedDetectors='%7')\n"
" ConvertToMD(InputWorkspace='%1',OutputWorkspace='%1_md',MaxRecursionDepth=1,MinRecursionDepth=1,OtherDimensions='%2',dEAnalysisMode='%3',QDimensions='%4',MinValues='%5',MaxValues='%6',UsePreprocessedDetectors='%7')\n"
" SaveMD(InputWorkspace='%1_md', Filename=r'%8/%1_md.nxs',MakeFileBacked='1')\n"
" DeleteWorkspace(Workspace='%1_md')\n"
"except:\n"
Expand Down

0 comments on commit 89d757e

Please sign in to comment.