diff options
author | Thomas White <taw@physics.org> | 2016-11-08 16:20:58 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-02-27 11:02:02 +0100 |
commit | d813960912ddc76d5cff0501b4f7783c3eeca95d (patch) | |
tree | 4dc11e2ecd789d34a451abc81d799508118a6b86 /tests/prof2d_check.c | |
parent | cc64a9ae6c4ca7518ba904d6cdf38b3d8dccbbf7 (diff) |
Separate partiality calculation from prediction
Diffstat (limited to 'tests/prof2d_check.c')
-rw-r--r-- | tests/prof2d_check.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/prof2d_check.c b/tests/prof2d_check.c index 9fe8b356..8b9de871 100644 --- a/tests/prof2d_check.c +++ b/tests/prof2d_check.c @@ -3,11 +3,11 @@ * * Check 2D profile fitting * - * Copyright © 2013-2014 Deutsches Elektronen-Synchrotron DESY, + * Copyright © 2013-2016 Deutsches Elektronen-Synchrotron DESY, * a research centre of the Helmholtz Association. * * Authors: - * 2013-2014 Thomas White <taw@physics.org> + * 2013-2014,2016 Thomas White <taw@physics.org> * * This file is part of CrystFEL. * @@ -135,7 +135,7 @@ int main(int argc, char *argv[]) image.n_crystals = 1; image.crystals = &cr; - list = find_intersections(&image, cr, PMODEL_SCSPHERE); + list = predict_to_res(cr, largest_q(&image)); crystal_set_reflections(cr, list); for ( fs=0; fs<w; fs++ ) { |