Skip to content

Commit

Permalink
refs #6449 Doxygen warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts committed Apr 9, 2013
1 parent 88d4574 commit 394a455
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class DLLExport MDTransfQ3D: public MDTransfModQ
public:
/// the name, this ChildAlgorithm is known to users (will appear in selection list)
const std::string transfID()const; // {return "Q3D"; }
bool calcYDepCoordinates(std::vector<coord_t> &Coord,size_t i);
bool calcYDepCoordinates(std::vector<coord_t> &Coord,size_t i);
bool calcMatrixCoord(const double& X,std::vector<coord_t> &Coord, double &s, double &err)const;
// constructor;
MDTransfQ3D();
Expand Down
12 changes: 11 additions & 1 deletion Code/Mantid/Framework/MDEvents/src/MDTransfQ3D.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,17 @@ namespace Mantid
}
}


/** Calculates 3D transformation of the variable coordinates and (if applicable) signal and error depending on 3D coordinates
* (e.g. Lorents corrections)
*@param x -- the transformed values
*@param s -- the signal
*@param err --the error
*
*@return converted 3D coordinates corresponding to given detector and X-vale
Optionally:
@return s -- corrected signal
@return err -- corrected error
*/
bool MDTransfQ3D::calcMatrixCoord(const double& x,std::vector<coord_t> &Coord,double &s, double &err)const
{
if(m_Emode == Kernel::DeltaEMode::Elastic)
Expand Down

0 comments on commit 394a455

Please sign in to comment.