Skip to content
Snippets Groups Projects
Commit 909f1a01 authored by Sam Jenkins's avatar Sam Jenkins
Browse files

Re 25439 fixed doxygen warnings

parent 0c7139e9
No related merge requests found
......@@ -64,8 +64,8 @@ class CreateVanadiumTest(systemtesting.MantidSystemTest):
splined_ws, unsplined_ws = self.calibration_results
for ws in splined_ws+unsplined_ws:
self.assertEqual(ws.sample().getMaterial().name(), 'V')
return (unsplined_ws.getName(), "ISIS_Powder-POLARIS00098533_unsplined.nxs",
splined_ws.getName(), "ISIS_Powder-POLARIS00098533_splined.nxs")
return (unsplined_ws.name(), "ISIS_Powder-POLARIS00098533_unsplined.nxs",
splined_ws.name(), "ISIS_Powder-POLARIS00098533_splined.nxs")
def cleanup(self):
try:
......@@ -93,7 +93,7 @@ class FocusTest(systemtesting.MantidSystemTest):
for ws in self.focus_results:
self.assertEqual(ws.sample().getMaterial().name(), 'Si')
self.tolerance = 1e-7
return self.focus_results.getName(), "ISIS_Powder-POLARIS98533_FocusSempty.nxs"
return self.focus_results.name(), "ISIS_Powder-POLARIS98533_FocusSempty.nxs"
def cleanup(self):
try:
......@@ -124,7 +124,7 @@ class FocusTestChopperMode(systemtesting.MantidSystemTest):
# this needs to be put in due to rounding errors between OS' for the proton_charge_by_period log
self.disableChecking.append('Sample')
self.tolerance = 1e-7
return self.focus_results.getName(), "ISIS_Powder-POLARIS98533_Auto_chopper.nxs"
return self.focus_results.name(), "ISIS_Powder-POLARIS98533_Auto_chopper.nxs"
def cleanup(self):
try:
......
......@@ -231,6 +231,8 @@ void EnggDiffractionPresenter::updateNewCalib(const std::string &fname) {
* process.
*
* @param fname name of the calibration/GSAS iparm file
* @param vanNo output param to hold the vanadium run
* @param ceriaNo output param to hold the ceria run
*/
void EnggDiffractionPresenter::grabCalibParms(const std::string &fname,
std::string &vanNo,
......@@ -1663,7 +1665,9 @@ void EnggDiffractionPresenter::focusingFinished() {
* @param cs user settings for calibration (this does not calibrate but
* uses calibration input files such as vanadium runs
*
* @param runLabel run number and bank ID of the run to focus
* @param runLabel run number of the run to focus
*
* @param bank the Bank ID to focus
*
* @param specNos string specifying a list of spectra (for "cropped"
* focusing or "texture" focusing), only considered if not empty
......
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