diff options
author | Thomas White <taw@physics.org> | 2013-07-25 12:04:01 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-07-25 12:04:01 +0200 |
commit | 0431728cc5efd3321b1c60f97a830dd525cf04c8 (patch) | |
tree | 028cfdde49c4089fb09ce187a59fe74d98ef8bcf /src/partialator.c | |
parent | 0bb8df9b6a54db5da84d9fc9c26efcf5974fc89b (diff) |
partialator: Simplify scaling
Diffstat (limited to 'src/partialator.c')
-rw-r--r-- | src/partialator.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/partialator.c b/src/partialator.c index 73046e0a..07d7437c 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -190,7 +190,7 @@ static int select_scalable_reflections(RefList *list, RefList *reference) if ( get_partiality(refl) < 0.1 ) sc = 0; v = fabs(get_intensity(refl)); esd = get_esd_intensity(refl); - if ( v < 0.5*esd ) sc = 0; + //if ( v < 0.5*esd ) sc = 0; /* If we are scaling against a reference set, we additionally * require that this reflection is in the reference list. */ @@ -497,6 +497,7 @@ int main(int argc, char *argv[]) n_crystals = 0; images = NULL; crystals = NULL; + do { RefList *as; |