Skip to content
Snippets Groups Projects
Commit 1d803cd2 authored by Gemma Guest's avatar Gemma Guest
Browse files

Fix doxygen errors Re #22263

parent 7734afb2
No related merge requests found
......@@ -10,7 +10,6 @@ namespace CustomInterfaces {
/** Constructor
* @param view :: The view we are handling
* @param group :: The group on the parent tab this belongs to
*/
EventPresenter::EventPresenter(IEventView *view)
: m_view(view), m_sliceType(SliceType::None) {
......
......@@ -5,7 +5,6 @@ namespace MantidQt {
namespace CustomInterfaces {
/** Constructor
* @param group :: [input] The group on the parent tab this belongs to
* @param parent :: [input] The parent of this widget
*/
EventView::EventView(QWidget *parent) {
......
......@@ -8,6 +8,8 @@ namespace MantidQt {
namespace CustomInterfaces {
/** Constructor
* @param algorithmForTooltips :: [input] An algorithm that will be
* used to find tooltips for the input properties
* @param parent :: [input] The parent of this widget
*/
ExperimentView::ExperimentView(
......
......@@ -25,6 +25,8 @@ void showAsValid(QDoubleSpinBox &spinBox) {
} // namespace
/** Constructor
* @param algorithmForTooltips :: [input] An algorithm that will be
* used to find tooltips for the input properties
* @param parent :: [input] The parent of this widget
*/
InstrumentView::InstrumentView(
......
......@@ -35,7 +35,6 @@ void ReflAutoreduction::setSearchResultsExist() { m_searchResultsExist = true; }
/** Initialise a new autoreduction on the given group
*
* @param group : the index of which group to start the reduction on
* @param searchString : the search string to use for finding runs
* @return : true if started
*/
......@@ -47,7 +46,6 @@ bool ReflAutoreduction::setupNewAutoreduction(const std::string &searchString) {
}
/** Stop an autoreduction for a given group
* @param group : the group to stop autoreduction for
* @return : true if stopped
*/
bool ReflAutoreduction::pause() {
......
......@@ -16,6 +16,8 @@ namespace CustomInterfaces {
* @param runsPresenter :: [input] A pointer to the 'Runs' tab presenter
* @param eventPresenter :: [input] A pointer to the 'Event Handling' tab
* presenter
* @param experimentPresenter :: [input] A pointer to the 'Experiment' tab
* presenter
* @param instrumentPresenter :: [input] A pointer to the 'Instrument' tab
* presenter
* @param savePresenter :: [input] A pointer to the 'Save ASCII' tab presenter
......@@ -74,8 +76,6 @@ void ReflBatchPresenter::settingsChanged() {
/** Returns default values specified for 'Transmission run(s)' for the
* given angle
*
* @param group :: Index of the group in 'Settings' tab from which to get the
*values
* @param angle :: the run angle to look up transmission runs for
* @return :: Values passed for 'Transmission run(s)'
*/
......
......@@ -12,11 +12,8 @@ namespace CustomInterfaces {
/** Constructor
* @param view :: [input] The view we are managing
* @param runsPresenter :: [input] A pointer to the 'Runs' tab presenter
* @param eventPresenter :: [input] A pointer to the 'Event Handling' tab
* presenter
* @param settingsPresenter :: [input] A pointer to the 'Settings' tab presenter
* @param savePresenter :: [input] A pointer to the 'Save ASCII' tab presenter
* @param batchPresenterFactory :: [input] A factory to create the batches
* we will manage
*/
ReflMainWindowPresenter::ReflMainWindowPresenter(
IReflMainWindowView *view, ReflBatchPresenterFactory batchPresenterFactory)
......
......@@ -54,6 +54,7 @@ Mantid::Kernel::Logger g_log("Reflectometry GUI");
* search.
* @param defaultInstrumentIndex The index of the instrument to have selected by
* default.
* @param messageHandler :: A handler to pass messages to the user
* @param searcher :: [input] The search implementation
*/
ReflRunsTabPresenter::ReflRunsTabPresenter(
......@@ -395,13 +396,13 @@ RunDescriptionMetadata metadataFromDescription(std::string const &description) {
/** Transfers the selected runs in the search results to the processing table
* @param rowsToTransfer : a set of row indices in the search results to
* transfer
* @param group : the group number of the table to transfer to
* @param matchType : an enum specifying how strictly to match runs against
* the transfer criteria
* @return : The runs to transfer as a vector of maps
*/
void ReflRunsTabPresenter::transfer(const std::set<int> &rowsToTransfer,
const TransferMatch) {
const TransferMatch matchType) {
UNUSED_ARG(matchType);
if (validateRowsToTransfer(rowsToTransfer)) {
auto progress = setupProgressBar(rowsToTransfer);
auto jobs = tablePresenter()->reductionJobs();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment