Skip to content

Commit f074773

Browse files
committed
Added more defination for the threshold properties
1 parent f84e340 commit f074773

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Framework/Algorithms/src/GenerateFlatCellWorkspaceLOQ.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,12 @@ void GenerateFlatCellWorkspaceLOQ::init() {
4646
declareProperty("CreateMaskWorkspace", true, "Determines if masked workspace needs to be created.");
4747
declareProperty("LABThresholdMultiplier", 1.0,
4848
"The parameter that is used to scale the standard deviation in order to set the masking threshold of "
49-
"the low angle bank.");
49+
"the low angle bank. The masking threshold is calculated by the equation "
50+
"maskingThreshold = 1.0 + (LABThresholdMultiplier x standard deviation of the normalized LAB data);");
5051
declareProperty("HABThresholdMultiplier", 0.5,
5152
"The parameter that is used to scale the standard deviation in order to set the masking threshold of "
52-
"the high angle bank.");
53+
"the high angle bank. The masking threshold is calculated by the equation "
54+
"maskingThreshold = 1.0 + (HABThresholdMultiplier x standard deviation of the normalized HAB data);");
5355
declareProperty("ApplyMaskDirectlyToWorkspace", false, "Determines if mask is directly applied to workspace.");
5456
declareProperty("ApplyCorrectionsDirectlyToWorkspace", true,
5557
"Determines if the input data should be divided by the output of GenerateFlatCellWorkspaceLOQ.");

0 commit comments

Comments
 (0)