Now that v6.12 of Mantid has been released we are focusing on what we want to achieve for v6.13 before the code freeze for that in May. This includes removing algorithms that have been deprecated for some time.
In v6.13 we have already removed (and therefore is already not available in the current nightly): -
AlignDetectors (please use a combination of ApplyDiffCal and ConvertUnits instead)
We will also be removing: -
CentroidPeaksMD v1 (replaced by CentroidPeaksMD v2)
LoadNexusMonitors v1 (replaced by LoadNexusMonitors v2)
Transpose3D (use TransposeMD v1 instead)
Please update your scripts and workflows accordingly. For algorithms with multiple versions the most recent version is the default used unless you specify otherwise e.g. the following will default to v2
CentroidPeaksMD(InputWorkspace=‘TOPAZ_3132_md’, PeaksWorkspace=‘TOPAZ_3132_peaks’, OutputWorkspace=‘TOPAZ_3132_peaks2’)
If you wanted to specify the version of the algorithm you use you would rewrite the above as follows: -
CentroidPeaksMD(InputWorkspace=‘TOPAZ_3132_md’, PeaksWorkspace=‘TOPAZ_3132_peaks’, OutputWorkspace=‘TOPAZ_3132_peaks2’, Version=2)
Future changes
Please note the following as also currently deprecated and we will be looking to remove them in the future (just not in v6.13). Again please update your scripts and workflows to avoid using these.
ConvertUnitsUsingDetectorTable (this has no replacement)
DiffractionFocussing v1 (replaced by DiffractionFocussing v2)
EvaluateMDFunction (please use EvaluateFunction instead)
FFTSmooth v1 (replaced by FFTSmooth v2)
IntegratePeakTimeSlices (there is no replacement)
LoadDspacemap (there is no replacement)
LoadSINQFocus (replaced by LoadSINQ)
MaskInstrument (use MaskDetectors instead)
SofQWCentre (use SofQWNormalisedPolygon instead)
SofQWPolygon (use SofQWNormalisedPolygon instead)
If you have any queries about these algorithms please contact us using mantid-help@mantidproject.org which is monitored.