aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/man/process_hkl.14
-rw-r--r--src/process_hkl.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/doc/man/process_hkl.1 b/doc/man/process_hkl.1
index e4189ad2..d32d8b8f 100644
--- a/doc/man/process_hkl.1
+++ b/doc/man/process_hkl.1
@@ -105,7 +105,9 @@ Include a reflection in the output only if it appears at least least \fIn\fR tim
.PD 0
.IP \fB--min-snr=\fR\fIn\fR
.PD
-Use a particular individual reflection intensity measurement only if it exceeds its estimated standard error by at least \fIn\fR. The default -infinity, i.e. no cutoff.
+Use a particular individual reflection intensity measurement only if it exceeds its estimated standard error by at least \fIn\fR. The default is -infinity, i.e. no cutoff.
+.IP
+\fBWARNING:\fR think very carefully before using this option. It will bias reflections towards more positive values, even where no signal exists, leading to a data set dominated by the background. This can invalidate some of the figures of merit for the merit for data quality while severely compromising the actual quality.
.SH CHOICE OF POINT GROUP FOR MERGING
diff --git a/src/process_hkl.c b/src/process_hkl.c
index 047ef55c..e9284bc2 100644
--- a/src/process_hkl.c
+++ b/src/process_hkl.c
@@ -493,6 +493,10 @@ int main(int argc, char *argv[])
ERROR("Invalid value for --min-snr.\n");
return 1;
}
+ ERROR("WARNING: You have used --min-snr.\n");
+ ERROR("WARNING: Please read the manual carefully to "
+ "learn about possible detrimental effects of this"
+ " option.\n");
break;
case '?' :