diff options
-rw-r--r-- | doc/man/partialator.1 | 2 | ||||
-rw-r--r-- | src/partialator.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/man/partialator.1 b/doc/man/partialator.1 index ce3c7907..f184dd38 100644 --- a/doc/man/partialator.1 +++ b/doc/man/partialator.1 @@ -100,7 +100,7 @@ Include a reflection in the output only if it appears at least least \fIn\fR tim .PD 0 .IP \fB--push-res=\fIn\fR .PD -Merge reflections which are up to \fIn\fR nm^-1 higher than the apparent resolution limit of each individual crystal. \fIn\fR can be negative to merge \fIlower\fR than the apparent resolution limit. The default is \fBpush-res=0\fR - note that this is different to the default behaviour of \fBprocess_hkl\fR. +Merge reflections which are up to \fIn\fR nm^-1 higher than the apparent resolution limit of each individual crystal. \fIn\fR can be negative to merge \fIlower\fR than the apparent resolution limit. The default is \fB--push-res=inf\fR, which means no resolution cutoff at all. .PD 0 .IP \fB--start-after=\fR\fIn\fR diff --git a/src/partialator.c b/src/partialator.c index 23f0c089..0c892a88 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -643,7 +643,7 @@ int main(int argc, char *argv[]) double max_adu = +INFINITY; char *sparams_fn = NULL; FILE *sparams_fh; - double push_res = 0.0; + double push_res = +INFINITY; gsl_rng *rng; int no_free = 0; char *csplit_fn = NULL; |