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

refs #6485 various wiki changes to cat A.

parent f5a880d5
No related merge requests found
/*WIKI* /*WIKI*
Workspaces contain information in logs. Often these detail what happened to the sample during the experiment. This algorithm allows one named log to be entered. Workspaces contain information in logs. Often these detail what happened to the sample during the experiment. This algorithm allows one named log to be entered.
The log can be either a String, a Number, or a Number Series. If you select Number Series, the current time will be used as the time of the log entry, and the number in the text used as the (only) value. The log can be either a String, a Number, or a Number Series. If you select Number Series, the current time will be used as the time of the log entry, and the number in the text used as the (only) value.
*WIKI*/ *WIKI*/
//---------------------------------------------------------------------- //----------------------------------------------------------------------
// Includes // Includes
......
...@@ -32,6 +32,7 @@ DECLARE_ALGORITHM( AlphaCalc) ...@@ -32,6 +32,7 @@ DECLARE_ALGORITHM( AlphaCalc)
*/ */
void AlphaCalc::init() void AlphaCalc::init()
{ {
this->setWikiSummary("Muon algorithm for calculating the detector efficiency between two groups of detectors.");
declareProperty(new API::WorkspaceProperty<>("InputWorkspace", "", declareProperty(new API::WorkspaceProperty<>("InputWorkspace", "",
Direction::Input), "Name of the input workspace"); Direction::Input), "Name of the input workspace");
......
/*WIKI* /*WIKI*
This is a workflow algorithm that does the bulk of the work for time focusing diffraction data. This is done by executing several sub-algorithms as listed below.
# [[RemovePromptPulse]] (event workspace only)
# [[CompressEvents]] (event workspace only)
# [[CropWorkspace]]
# [[MaskDetectors]]
# [[Rebin]] or [[ResampleX] if not d-space binning
# [[AlignDetectors]]
# If LRef, minwl, or DIFCref are specified:
## [[ConvertUnits]] to time-of-flight
## [[UnwrapSNS]]
## [[RemoveLowResTOF]]
## [[ConvertUnits]] to d-spacing
# [[Rebin]] if d-space binning
# [[DiffractionFocussing]]
# [[SortEvents]] (event workspace only)
# [[EditInstrumentGeometry]] (if appropriate)
# [[ConvertUnits]] to time-of-f
*WIKI*/ *WIKI*/
//---------------------------------------------------------------------- //----------------------------------------------------------------------
// Includes // Includes
......
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