diff options
author | Thomas White <taw@physics.org> | 2013-02-04 17:42:40 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-02-04 17:42:40 +0100 |
commit | e132f0a215392b13bf289cad55f2fece6e193625 (patch) | |
tree | 758c8b2af365c207007361ed5e45c3a385916f79 /libcrystfel/src/peaks.c | |
parent | 9049678c51e42eb5a5ef84cb94bc6f8a00e591f4 (diff) |
Indexing stuff
Diffstat (limited to 'libcrystfel/src/peaks.c')
-rw-r--r-- | libcrystfel/src/peaks.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcrystfel/src/peaks.c b/libcrystfel/src/peaks.c index c350388b..08595ef5 100644 --- a/libcrystfel/src/peaks.c +++ b/libcrystfel/src/peaks.c @@ -594,7 +594,7 @@ void search_peaks(struct image *image, float threshold, float min_gradient, } -int peak_sanity_check(struct image *image) +int peak_sanity_check(struct image *image, Crystal **crystals, int n_cryst) { int n_feat = 0; int n_sane = 0; @@ -616,13 +616,13 @@ int peak_sanity_check(struct image *image) /* Reciprocal space position of found peak */ q = get_q(image, f->fs, f->ss, NULL, 1.0/image->lambda); - for ( j=0; j<image->n_crystals; j++ ) { + for ( j=0; j<n_cryst; j++ ) { double ax, ay, az; double bx, by, bz; double cx, cy, cz; - cell_get_cartesian(crystal_get_cell(image->crystals[j]), + cell_get_cartesian(crystal_get_cell(crystals[j]), &ax, &ay, &az, &bx, &by, &bz, &cx, &cy, &cz); |