Skip to content
Snippets Groups Projects
Commit 994a6f14 authored by Federico Montesino Pouzols's avatar Federico Montesino Pouzols
Browse files

fixes to comments and doxygen tags, re #11124

parent bac72597
No related branches found
No related tags found
No related merge requests found
...@@ -122,7 +122,7 @@ public: ...@@ -122,7 +122,7 @@ public:
Mantid::Kernel::ConfigService::Instance().getFacility(); Mantid::Kernel::ConfigService::Instance().getFacility();
Mantid::Kernel::ConfigService::Instance().setFacility("SNS"); Mantid::Kernel::ConfigService::Instance().setFacility("SNS");
// TODO: at the moemnt these two create throw a NotFoundError // TODO: at the moment these two create throw a NotFoundError
// because the RemoteJobManager classes are missing and have not // because the RemoteJobManager classes are missing and have not
// done a DECLARE_REMOTEJOBMANAGER. Change this test when that is // done a DECLARE_REMOTEJOBMANAGER. Change this test when that is
// done (ticket #11126 etc.) // done (ticket #11126 etc.)
......
...@@ -18,7 +18,7 @@ Logger g_log("ComputeResourceInfo"); ...@@ -18,7 +18,7 @@ Logger g_log("ComputeResourceInfo");
* Construct a compute resource from information found in a facilities * Construct a compute resource from information found in a facilities
* definition file. * definition file.
* *
* @param f Facility where this (remote) compute resource is available * @param fac Facility where this (remote) compute resource is available
* @param elem A (Poco::XML::) Element to read the data from * @param elem A (Poco::XML::) Element to read the data from
* *
* @throw std::runtime_error if name or required attributes are not * @throw std::runtime_error if name or required attributes are not
...@@ -37,6 +37,8 @@ ComputeResourceInfo::ComputeResourceInfo(const FacilityInfo *fac, ...@@ -37,6 +37,8 @@ ComputeResourceInfo::ComputeResourceInfo(const FacilityInfo *fac,
"The compute resource name is not defined, at element: " + elemStr); "The compute resource name is not defined, at element: " + elemStr);
} }
// default: Mantid web service API:
// http://www.mantidproject.org/Remote_Job_Submission_API
m_managerType = "MantidWebServiceAPIJobManager"; m_managerType = "MantidWebServiceAPIJobManager";
std::string type = elem->getAttribute("JobManagerType"); std::string type = elem->getAttribute("JobManagerType");
if (!type.empty()) { if (!type.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