diff options
Diffstat (limited to 'src/peaks.h')
-rw-r--r-- | src/peaks.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/peaks.h b/src/peaks.h index 68e104a9..2d8c1db5 100644 --- a/src/peaks.h +++ b/src/peaks.h @@ -23,9 +23,12 @@ extern void search_peaks(struct image *image, float threshold); extern void dump_peaks(struct image *image, pthread_mutex_t *mutex); extern void output_intensities(struct image *image, UnitCell *cell, pthread_mutex_t *mutex, int polar, int sa, - int use_closer); -extern int peak_sanity_check(struct image *image, UnitCell *cell); -extern int find_projected_peaks(struct image *image, UnitCell *cell); + int use_closer, int circular_domain, + double domain_r); +extern int peak_sanity_check(struct image *image, UnitCell *cell, + int circular_domain, double domain_r); +extern int find_projected_peaks(struct image *image, UnitCell *cell, + int circular_domain, double domain_r); extern int integrate_peak(struct image *image, int xp, int yp, float *xc, float *yc, float *intensity, int do_polar, int do_sa); |