Skip to content
Snippets Groups Projects
Commit 2043ad91 authored by Owen Arnold's avatar Owen Arnold
Browse files

refs #9954. Add doxygen information.

parent cc9e62e5
No related branches found
No related tags found
No related merge requests found
...@@ -90,6 +90,12 @@ namespace Mantid ...@@ -90,6 +90,12 @@ namespace Mantid
return product; return product;
} }
/**
* Mask out data in the region between a1 and a2 with zeros. Operation performed on the original workspace
* @param a1 : start position in X
* @param a2 : end position in X
* @param source : Workspace to mask.
*/
void Stitch1D::maskInPlace(int a1, int a2, MatrixWorkspace_sptr source) void Stitch1D::maskInPlace(int a1, int a2, MatrixWorkspace_sptr source)
{ {
MatrixWorkspace_sptr product = WorkspaceFactory::Instance().create(source); MatrixWorkspace_sptr product = WorkspaceFactory::Instance().create(source);
......
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