Skip to content

Commit

Permalink
Re #9483. Getting rid of doxygen warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfpeterson committed May 20, 2014
1 parent edcfa85 commit 7f51783
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion Code/Mantid/Framework/MDEvents/src/MDEventFactory.cpp
Expand Up @@ -267,8 +267,9 @@ namespace Mantid
* @param eventType -- type of event (lean or full) to generate workspace for - -does not actually used.
*/
template<>
API::IMDEventWorkspace * MDEventFactory::createMDWorkspaceND<0>(const std::string & /*eventType*/)
API::IMDEventWorkspace * MDEventFactory::createMDWorkspaceND<0>(const std::string & eventType)
{
UNUSED_ARG(eventType);
throw std::invalid_argument("Workspace can not have 0 dimensions");
}
//-------------------------------------------------------------- MD BOX constructor wrapper
Expand Down
Expand Up @@ -20,8 +20,8 @@ namespace WorkflowAlgorithmHelpers
* @param overrideValue : A provided override value to hand back if nothing is found
* @return : Either the algorithm property or an instrument parameter.
*/
double getDblPropOrParam(const std::string &pmProp, Kernel::PropertyManager_sptr &pm,
const std::string &instParam, API::MatrixWorkspace_sptr &ws,
double getDblPropOrParam(const std::string &pmProp, Mantid::Kernel::PropertyManager_sptr &pm,
const std::string &instParam, Mantid::API::MatrixWorkspace_sptr &ws,
const double overrideValue)
{
double defaultValue = EMPTY_DBL();
Expand Down Expand Up @@ -67,8 +67,8 @@ namespace WorkflowAlgorithmHelpers
* @param overrideValue : A provided override value to hand back if nothing is found
* @return : Either the algorithm property or an instrument parameter.
*/
int getIntPropOrParam(const std::string &pmProp, Kernel::PropertyManager_sptr &pm,
const std::string &instParam, API::MatrixWorkspace_sptr &ws,
int getIntPropOrParam(const std::string &pmProp, Mantid::Kernel::PropertyManager_sptr &pm,
const std::string &instParam, Mantid::API::MatrixWorkspace_sptr &ws,
const int overrideValue)
{
int defaultValue = EMPTY_INT();
Expand Down Expand Up @@ -116,8 +116,8 @@ namespace WorkflowAlgorithmHelpers
* @param overrideValue : A provided override value to hand back if nothing is found
* @return : Either the algorithm property or an instrument parameter.
*/
bool getBoolPropOrParam(const std::string &pmProp, Kernel::PropertyManager_sptr &pm,
const std::string &instParam, API::MatrixWorkspace_sptr &ws,
bool getBoolPropOrParam(const std::string &pmProp, Mantid::Kernel::PropertyManager_sptr &pm,
const std::string &instParam, Mantid::API::MatrixWorkspace_sptr &ws,
const bool overrideValue)
{
bool defaultValue = false;
Expand Down

0 comments on commit 7f51783

Please sign in to comment.