Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
mantidproject
mantid
Commits
2b6a62ad
Commit
2b6a62ad
authored
Mar 28, 2018
by
Nick Draper
Browse files
Resolved warnings and renamed directive to relatedAlgorithms
To avoid clashing with the default seealso directive re #22143
parent
46824a24
Changes
916
Hide whitespace changes
Inline
Side-by-side
Framework/API/inc/MantidAPI/Algorithm.h
View file @
2b6a62ad
...
...
@@ -185,7 +185,7 @@ public:
const
std
::
string
categorySeparator
()
const
override
{
return
";"
;
}
/// Function to return all of the seeAlso (these are not validated) algorithms
/// related to this algorithm.A default implementation is provided.
const
std
::
vector
<
std
::
string
>
seeAlso
()
const
{
return
{};
};
const
std
::
vector
<
std
::
string
>
seeAlso
()
const
override
{
return
{};
};
/// function to return any aliases to the algorithm; A default implementation
/// is provided
const
std
::
string
alias
()
const
override
{
return
""
;
}
...
...
Framework/API/inc/MantidAPI/AlgorithmProxy.h
View file @
2b6a62ad
...
...
@@ -85,7 +85,7 @@ public:
return
m_categorySeparator
;
}
/// Function to return all of the seeAlso algorithms related to this algorithm
const
std
::
vector
<
std
::
string
>
seeAlso
()
const
{
return
m_seeAlso
;
};
const
std
::
vector
<
std
::
string
>
seeAlso
()
const
override
{
return
m_seeAlso
;
};
/// Aliases to the algorithm
const
std
::
string
alias
()
const
override
{
return
m_alias
;
}
/// Optional documentation URL for the real algorithm
...
...
docs/source/algorithms/Abins-v1.rst
View file @
2b6a62ad
...
...
@@ -11,7 +11,7 @@ Contributors:
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AbortRemoteJob-v1.rst
View file @
2b6a62ad
...
...
@@ -2,7 +2,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AbortRemoteJob-v2.rst
View file @
2b6a62ad
...
...
@@ -2,7 +2,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AbsorptionCorrection-v1.rst
View file @
2b6a62ad
...
...
@@ -2,7 +2,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AccumulateMD-v1.rst
View file @
2b6a62ad
...
...
@@ -2,7 +2,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AddLogDerivative-v1.rst
View file @
2b6a62ad
...
...
@@ -2,7 +2,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AddNote-v1.rst
View file @
2b6a62ad
...
...
@@ -3,7 +3,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AddPeak-v1.rst
View file @
2b6a62ad
...
...
@@ -2,7 +2,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AddPeakHKL-v1.rst
View file @
2b6a62ad
...
...
@@ -3,7 +3,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AddSampleLog-v1.rst
View file @
2b6a62ad
...
...
@@ -2,7 +2,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AddSampleLogMultiple-v1.rst
View file @
2b6a62ad
...
...
@@ -2,7 +2,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AddTimeSeriesLog-v1.rst
View file @
2b6a62ad
...
...
@@ -2,7 +2,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AlignAndFocusPowder-v1.rst
View file @
2b6a62ad
...
...
@@ -2,7 +2,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AlignAndFocusPowderFromFiles-v1.rst
View file @
2b6a62ad
...
...
@@ -2,7 +2,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AlignComponents-v1.rst
View file @
2b6a62ad
...
...
@@ -2,7 +2,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AlignDetectors-v1.rst
View file @
2b6a62ad
...
...
@@ -2,7 +2,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AlphaCalc-v1.rst
View file @
2b6a62ad
...
...
@@ -2,7 +2,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
docs/source/algorithms/AndMD-v1.rst
View file @
2b6a62ad
...
...
@@ -2,7 +2,7 @@
.. summary::
..
seeAlso
::
..
relatedAlgorithms
::
.. properties::
...
...
Prev
1
2
3
4
5
…
46
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment