diff options
author | Thomas White <taw@bitwiz.org.uk> | 2011-01-26 14:03:46 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:12 +0100 |
commit | 329134c42a76339438e4189e2cde05895e17ab62 (patch) | |
tree | c29c2a60c2a7bce0567e68a90d5a3c6fdd6eb9a0 /src/peaks.h | |
parent | 5bc6000049c4df955568a7ee2732a365afbe8246 (diff) |
Remove solid angle correction
It's never correct when using "bucket" integration, and always correct
when using "pixel" integration, so don't give the option.
Diffstat (limited to 'src/peaks.h')
-rw-r--r-- | src/peaks.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/peaks.h b/src/peaks.h index ba1eea30..8b506e42 100644 --- a/src/peaks.h +++ b/src/peaks.h @@ -24,12 +24,12 @@ extern void search_peaks(struct image *image, float threshold, extern void dump_peaks(struct image *image, FILE *ofh, pthread_mutex_t *mutex); extern void output_intensities(struct image *image, UnitCell *cell, - pthread_mutex_t *mutex, int polar, int sa, + pthread_mutex_t *mutex, int polar, int use_closer, FILE *ofh, int circular_domain, double domain_r); extern void output_pixels(struct image *image, UnitCell *cell, - pthread_mutex_t *mutex, int do_polar, int do_sa, + pthread_mutex_t *mutex, int do_polar, FILE *ofh, int circular_domain, double domain_r); extern int peak_sanity_check(struct image *image, UnitCell *cell, @@ -39,6 +39,6 @@ extern int find_projected_peaks(struct image *image, UnitCell *cell, extern int integrate_peak(struct image *image, int xp, int yp, float *xc, float *yc, float *intensity, double *pbg, double *pmax, - int do_polar, int do_sa, int centroid); + int do_polar, int centroid); #endif /* PEAKS_H */ |