Skip to content
Snippets Groups Projects
Commit 207fac3a authored by Steve Williams's avatar Steve Williams
Browse files

Corrections to some DoxyGen comments and a compiler warning re #100

parent 057abfb3
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ namespace Algorithms ...@@ -16,7 +16,7 @@ namespace Algorithms
Required Properties: Required Properties:
<UL> <UL>
<LI> Workspace -The log data will be added to this workspace</LI> <LI> Workspace -The log data will be added to this workspace</LI>
<LI> LogName -The name the entry will be accessible through this name</LI> <LI> LogName -The named entry will be accessible through this name</LI>
Optional property: Optional property:
<LI> LogText -The log data</LI> <LI> LogText -The log data</LI>
</UL> </UL>
......
...@@ -233,7 +233,7 @@ namespace Mantid ...@@ -233,7 +233,7 @@ namespace Mantid
const double xNew) const const double xNew) const
{ {
//get the index of the first point that is higher in x, we'll base some of the error estimate on the error on this point //get the index of the first point that is higher in x, we'll base some of the error estimate on the error on this point
const int indAbove = const size_t indAbove =
std::lower_bound(xsOld.begin(), xsOld.end(), xNew) - xsOld.begin(); std::lower_bound(xsOld.begin(), xsOld.end(), xNew) - xsOld.begin();
const double error1 = esOld[indAbove]; const double error1 = esOld[indAbove];
......
...@@ -375,7 +375,7 @@ void LoadDetectorInfo::readRAW(const std::string& fName) ...@@ -375,7 +375,7 @@ void LoadDetectorInfo::readRAW(const std::string& fName)
/** Creates or modifies the parameter map for the specified detector adding /** Creates or modifies the parameter map for the specified detector adding
* pressure and wall thickness information * pressure and wall thickness information
* @param params these will be written to the detector paraments 3He(atm)=pressure) and wallT(m)=wall thickness * @param params these will be written to the detector paraments 3He(atm)=pressure) and wallT(m)=wall thickness
* @param change the parameters are successfully changed they are stored here * @param change if the parameters are successfully changed they are stored here
* @throw NotFoundError if a pointer to the specified detector couldn't be retrieved * @throw NotFoundError if a pointer to the specified detector couldn't be retrieved
*/ */
void LoadDetectorInfo::setDetectorParams(const detectorInfo &params, detectorInfo &change) void LoadDetectorInfo::setDetectorParams(const detectorInfo &params, detectorInfo &change)
......
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