diff --git a/Framework/DataHandling/inc/MantidDataHandling/SavePDFGui.h b/Framework/DataHandling/inc/MantidDataHandling/SavePDFGui.h index f631bc33573b466e0f7ad535acd9328f1d5bd76a..a13dc4db268b74abe23f2bbd9e8f7fb3da4af7d6 100644 --- a/Framework/DataHandling/inc/MantidDataHandling/SavePDFGui.h +++ b/Framework/DataHandling/inc/MantidDataHandling/SavePDFGui.h @@ -13,7 +13,8 @@ namespace Mantid { namespace DataHandling { -/** SavePDFGui : Saves a workspace containing a pair distrebution function in a format readable by the PDFgui package. +/** SavePDFGui : Saves a workspace containing a pair distrebution function in a +format readable by the PDFgui package. Required Properties: <UL> diff --git a/Framework/DataHandling/inc/MantidDataHandling/SaveRMCProfile.h b/Framework/DataHandling/inc/MantidDataHandling/SaveRMCProfile.h index a6f545c9706c6fffe4a5479596394acc2d3f08ba..e27ba506f3d0784ce493c8d828300ccf9fb196ae 100644 --- a/Framework/DataHandling/inc/MantidDataHandling/SaveRMCProfile.h +++ b/Framework/DataHandling/inc/MantidDataHandling/SaveRMCProfile.h @@ -13,7 +13,8 @@ namespace Mantid { namespace DataHandling { -/** SaveRMCProfile : Saves a workspace containing a spectral density in a format readable by the RMCProfile package. +/** SaveRMCProfile : Saves a workspace containing a spectral density in a format +readable by the RMCProfile package. Required Properties: <UL> diff --git a/docs/source/algorithms/SaveRCMProfile-v1.rst b/docs/source/algorithms/SaveRCMProfile-v1.rst deleted file mode 100644 index aa97aa61a6a3a66c488da5966058ba51f243ab19..0000000000000000000000000000000000000000 --- a/docs/source/algorithms/SaveRCMProfile-v1.rst +++ /dev/null @@ -1,59 +0,0 @@ - -.. algorithm:: - -.. summary:: - -.. relatedalgorithms:: - -.. properties:: - -Description ------------ - -This algorithm saves S(Q)-1 files consistent with `RMCProfile <http://www.rmcprofile.org/Main_Page>`_. -The body of the file is of the form ``Q SQ-1 dQ dSQ``. - -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 - SaveRMCProfile** - -.. testcode:: SaveRMCProfileExample - - # Create a host workspace - ws = CreateWorkspace(DataX=range(0,3), DataY=range(0,3), UnitX="Angstrom^-1") - - # Create a filename - import os - path = os.path.join(os.path.expanduser("~"), "savermcprofile.gr") - - # Save as S(Q)-1 file - SavePDFGui(ws, path) - - # Check that the file exists - print(os.path.isfile(path)) - -Output: - -.. testoutput:: SaveRMCProfileExample - - True - -.. testcleanup:: SaveRMCProfileExample - - DeleteWorkspace(ws) - import os - try: - path = os.path.join(os.path.expanduser("~"), "savermcprofile.gr") - os.remove(path) - except: - pass - -.. categories:: - -.. sourcelink:: - diff --git a/scripts/Diffraction/isis_powder/polaris_routines/polaris_algs.py b/scripts/Diffraction/isis_powder/polaris_routines/polaris_algs.py index fcfd8b7dd70814befc25957e03d7217caf35cbf0..b2a736112eb2828ad5a75b7b50023a96505d0ecd 100644 --- a/scripts/Diffraction/isis_powder/polaris_routines/polaris_algs.py +++ b/scripts/Diffraction/isis_powder/polaris_routines/polaris_algs.py @@ -205,14 +205,14 @@ def fast_fourier_filter(ws, freq_params=None): # k_max/k_c = Nk/nk # 1/(k_c*2*dx) = p # because FFT uses sin(2*pi*k*x) while PDFFourierTransform uses sin(Q*r) we need to include a factor of 2*pi - Params=str(upper_freq_param), IgnoreXBins=True) - mantid.FFTSmooth(InputWorkspace=ws, OutputWorkspace=ws, Filter="Zeroing", - upper_freq_param = round(np.pi / (freq_params[1] * (x_range[1] - x_range[0]))) - if len(freq_params) > 1: - mantid.Minus(LHSWorkspace=ws, RHSWorkspace=tmp, OutputWorkspace=ws) - IgnoreXBins=True) - tmp = mantid.FFTSmooth(InputWorkspace=ws, Filter="Zeroing", Params=str(lower_freq_param), StoreInADS=False, - # it does not matter which we use in this case. - # This is giving the FFTSmooth the data in the form of S(Q)-1, later we use PDFFourierTransform with Q(S(Q)-1) + # p = pi/(k_c*dQ) lower_freq_param = round(np.pi / (freq_params[0] * (x_range[1] - x_range[0]))) - # p = pi/(k_c*dQ) \ No newline at end of file + # This is giving the FFTSmooth the data in the form of S(Q)-1, later we use PDFFourierTransform with Q(S(Q)-1) + # it does not matter which we use in this case. + tmp = mantid.FFTSmooth(InputWorkspace=ws, Filter="Zeroing", Params=str(lower_freq_param), StoreInADS=False, + IgnoreXBins=True) + mantid.Minus(LHSWorkspace=ws, RHSWorkspace=tmp, OutputWorkspace=ws) + if len(freq_params) > 1: + upper_freq_param = round(np.pi / (freq_params[1] * (x_range[1] - x_range[0]))) + mantid.FFTSmooth(InputWorkspace=ws, OutputWorkspace=ws, Filter="Zeroing", + Params=str(upper_freq_param), IgnoreXBins=True)