diff options
author | Thomas White <taw@physics.org> | 2010-09-21 15:39:53 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:26:59 +0100 |
commit | e44890d0a13815f7fd61d777637c5bd09cb09dbc (patch) | |
tree | 1a3e49a77bf915e4fc2a770d9455ab0c629fbd19 /src/peaks.h | |
parent | 9e5e6edd61073eb6d19e31dadb325aa88e692155 (diff) |
Add the possibility to use a circular (instead of 'crystallographic') integration domain
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); |