Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
9fdde69
Remove AlignDetectors algorithm
sf1919 Aug 12, 2024
085afb0
Remove aligndetectorstest
sf1919 Aug 12, 2024
09537b1
Remove user documentation
sf1919 Aug 12, 2024
d15d7d0
Remove references for AlignDetectors in algorithm documentation
sf1919 Aug 14, 2024
69e734a
Update algorithm documentation with maths from AlignDetectors
sf1919 Aug 14, 2024
5897496
Move GSAS equation information
sf1919 Aug 14, 2024
aef03e9
Add mention of ApplyDiffCal algorithm in PDCalibration documentation
sf1919 Aug 14, 2024
3be4598
Update calibration concept documentation
sf1919 Aug 14, 2024
4616174
Update DiffractionFocussing2
sf1919 Aug 19, 2024
1bf7cda
Add ApplyDIffCal to DiffractionFocussing2
sf1919 Aug 19, 2024
1489a7d
Remove see also references
sf1919 Aug 28, 2024
284ddbe
Update the gem_routines/gem_calibration_algs script
sf1919 Aug 28, 2024
b70f8ef
Remove AlignDetectors from WishAnalysis System test
sf1919 Aug 28, 2024
058db30
Use correct parameters for ApplyDiffCal
sf1919 Sep 2, 2024
8454905
More documentation cleaning
sf1919 Sep 2, 2024
34e480f
Fix problems with WishAnalysis test
sf1919 Sep 5, 2024
813a78d
Fix failing system tests
sf1919 Sep 9, 2024
0dad46b
Add release note
sf1919 Sep 10, 2024
470e13f
Upate imports in WishAnalyis.py test
sf1919 Dec 10, 2024
d486615
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 10, 2024
778fa13
Move release note
sf1919 Jan 17, 2025
d335262
Fix WISH system test by clearing calibration
RichardWaiteSTFC Jan 30, 2025
3fb3cdc
Fix gem calibration test by clearing calibration
RichardWaiteSTFC Jan 30, 2025
47af5f5
Fix doc test still using AlignDetectors
RichardWaiteSTFC Jan 31, 2025
e824e9e
Remove references to AlignDetectors in docs and comments etc.
RichardWaiteSTFC Jan 31, 2025
25a29f3
Add calibration section to ConvertUnits
RichardWaiteSTFC Feb 4, 2025
8303ffa
Update docs/source/algorithms/ConvertUnits-v1.rst
sf1919 Feb 12, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions Framework/Algorithms/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ set(SRC_FILES
src/AddPeak.cpp
src/AddSampleLog.cpp
src/AddTimeSeriesLog.cpp
src/AlignDetectors.cpp
src/AnnularRingAbsorption.cpp
src/AnyShapeAbsorption.cpp
src/ApodizationFunctions.cpp
Expand Down Expand Up @@ -355,7 +354,6 @@ set(INC_FILES
inc/MantidAlgorithms/AddPeak.h
inc/MantidAlgorithms/AddSampleLog.h
inc/MantidAlgorithms/AddTimeSeriesLog.h
inc/MantidAlgorithms/AlignDetectors.h
inc/MantidAlgorithms/AnnularRingAbsorption.h
inc/MantidAlgorithms/AnyShapeAbsorption.h
inc/MantidAlgorithms/ApodizationFunctions.h
Expand Down Expand Up @@ -712,7 +710,6 @@ set(TEST_FILES
AddPeakTest.h
AddSampleLogTest.h
AddTimeSeriesLogTest.h
AlignDetectorsTest.h
AnnularRingAbsorptionTest.h
AnyShapeAbsorptionTest.h
AppendSpectraTest.h
Expand Down
77 changes: 0 additions & 77 deletions Framework/Algorithms/inc/MantidAlgorithms/AlignDetectors.h

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ namespace Algorithms {
* The offsets are all sets to zero and all detectors are selected. Detectors
not assigned
* to any group will appear as group 0, i.e. not included when using
AlignDetector or
* DiffractionFocussing algorithms.
the
* DiffractionFocussing algorithm.
* The group number is assigned based on a descent in the instrument tree
assembly.
* If two assemblies are parented, say Bank1 and module1, and both assembly
Expand Down Expand Up @@ -59,7 +59,7 @@ class MANTID_ALGORITHMS_DLL CreateCalFileByNames final : public API::Algorithm {
/// Algorithm's version
int version() const override { return (1); }
const std::vector<std::string> seeAlso() const override {
return {"ReadGroupsFromFile", "CreateDummyCalFile", "AlignDetectors", "DiffractionFocussing",
return {"ReadGroupsFromFile", "CreateDummyCalFile", "DiffractionFocussing",
"LoadCalFile", "SaveCalFile", "MergeCalFiles"};
}
/// Algorithm's category for identification
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Algorithms {
* The offsets are all sets to zero and all detectors are selected. Detectors
not assigned
* to any group will appear as group 0, i.e. not included when using
AlignDetector or
the
* DiffractionFocussing algorithms.
* The group number is assigned based on a descent in the instrument tree
assembly.
Expand Down Expand Up @@ -58,7 +58,7 @@ class MANTID_ALGORITHMS_DLL CreateDummyCalFile final : public API::Algorithm {
/// Algorithm's version
int version() const override { return (1); }
const std::vector<std::string> seeAlso() const override {
return {"ReadGroupsFromFile", "CreateCalFileByNames", "AlignDetectors", "DiffractionFocussing",
return {"ReadGroupsFromFile", "CreateCalFileByNames", "DiffractionFocussing",
"LoadCalFile", "SaveCalFile", "MergeCalFiles"};
}
/// Algorithm's category for identification
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace Algorithms {
detector,
the third column corresponds to an offset in Deltad/d (not applied, usually
applied using
the AlignDetectors algorithm). The forth column is a flag to indicate whether
the ConvertUnits algorithm). The forth column is a flag to indicate whether
the detector
is selected. The fifth column indicates the group this detector belongs to
(number >=1),
Expand Down Expand Up @@ -74,9 +74,7 @@ class MANTID_ALGORITHMS_DLL DiffractionFocussing2 final : public API::Algorithm

/// Algorithm's version for identification overriding a virtual method
int version() const override { return 2; }
const std::vector<std::string> seeAlso() const override {
return {"AlignDetectors", "AlignAndFocusPowder", "LoadCalFile"};
}
const std::vector<std::string> seeAlso() const override { return {"AlignAndFocusPowder", "LoadCalFile"}; }
/// Algorithm's category for identification overriding a virtual method
const std::string category() const override { return "Diffraction\\Focussing"; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@ namespace Algorithms {
* 4 621 0.0000000 1 0
* The first column is simply an index, the second is a UDET identifier for
the detector,
* the third column corresponds to an offset in Deltad/d (not applied, usually
applied using
* the AlignDetectors algorithm). The forth column is a flag to indicate
* the third column corresponds to an offset in Deltad/d (not applied, this can be interpreted by the ApplyDiffCal
* algorithm). The forth column is a flag to indicate
whether the detector
* is selected. The fifth column indicates the group this detector belongs to
(number >=1),
Expand Down Expand Up @@ -76,7 +75,7 @@ class MANTID_ALGORITHMS_DLL ReadGroupsFromFile final : public API::Algorithm {
/// Algorithm's version
int version() const override { return (1); }
const std::vector<std::string> seeAlso() const override {
return {"CreateDummyCalFile", "CreateCalFileByNames", "AlignDetectors", "DiffractionFocussing",
return {"CreateDummyCalFile", "CreateCalFileByNames", "DiffractionFocussing",
"LoadCalFile", "SaveCalFile", "MergeCalFiles"};
}
/// Algorithm's category for identification
Expand Down
Loading