diff --git a/Code/Mantid/docs/source/algorithms/SmoothMD-v1.rst b/Code/Mantid/docs/source/algorithms/SmoothMD-v1.rst index f0f805e3fc302f399ec58637aac330b5d648fafc..6e2aae14e491aa273077023224ff43146d9e4d70 100644 --- a/Code/Mantid/docs/source/algorithms/SmoothMD-v1.rst +++ b/Code/Mantid/docs/source/algorithms/SmoothMD-v1.rst @@ -15,15 +15,20 @@ Provides smoothing of :ref:`MDHistoWorkspaces <MDHistoWorkspace>`__ in n-dimensi Usage ----- -.. Try not to use files in your examples, - but if you cannot avoid it then the (small) files must be added to - autotestdata\UsageData and the following tag unindented - .. include:: ../usagedata-note.txt **Example - SmoothMD** .. testcode:: SmoothMDExample + + ws = CreateMDWorkspace(Dimensions=2, Extents=[-10,10,-10,10], Names='A,B', Units='U,U') + FakeMDEventData(InputWorkspace=ws, PeakParams='100000,-5,0,1') + FakeMDEventData(InputWorkspace=ws, PeakParams='100000,5,0,1') + histogram = BinMD(InputWorkspace='a', AlignedDim0='A,-10,10,100', AlignedDim1='B,-10,10,100', OutputExtents='-10,10,-10,10,-10,10', OutputBins='10,10,10') + #plotSlice(histogram) + smoothed = SmoothMD(InputWorkspace=histogram, WidthVector=5, Function='Hat') + #plotSlice(smoothed) + # Create a host workspace ws = CreateWorkspace(DataX=range(0,3), DataY=(0,2)) or @@ -31,14 +36,14 @@ Usage wsOut = SmoothMD() - # Print the result - print "The output workspace has %i spectra" % wsOut.getNumberHistograms() + # Print the result. Displaying in the SliceViewer would be best + print "The output workspace has %i points" % smoothed.getNPoints() Output: .. testoutput:: SmoothMDExample - The output workspace has ?? spectra + The output workspace has ?? points .. categories::