diff options
author | Thomas White <taw@physics.org> | 2012-03-09 18:20:36 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-03-09 18:20:36 +0100 |
commit | 4be9287d7ae69bcfee52efed5a108f31c0f40f7e (patch) | |
tree | 014346634041b8569e7a95ef22b0b7252ab6b28a /libcrystfel/src/peaks.h | |
parent | 385cd10cd9acaa8c116da3ccb18e82ef41356b74 (diff) |
indexamajig: Take integration radii on command line
Diffstat (limited to 'libcrystfel/src/peaks.h')
-rw-r--r-- | libcrystfel/src/peaks.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/libcrystfel/src/peaks.h b/libcrystfel/src/peaks.h index e5e31b91..8940a62e 100644 --- a/libcrystfel/src/peaks.h +++ b/libcrystfel/src/peaks.h @@ -34,22 +34,18 @@ #include "reflist.h" extern void search_peaks(struct image *image, float threshold, - float min_gradient, float min_snr); + float min_gradient, float min_snr, + double ir_inn, double ir_mid, double ir_out); extern void integrate_reflections(struct image *image, - int use_closer, int bgsub, double min_snr); + int use_closer, int bgsub, double min_snr, + double ir_inn, double ir_mid, double ir_out); extern double peak_lattice_agreement(struct image *image, UnitCell *cell, double *pst); extern int peak_sanity_check(struct image *image); -/* Exported so it can be poked by integration_check */ -extern int integrate_peak(struct image *image, - int cfs, int css, - double *pfs, double *pss, - double *intensity, double *sigma); - extern void estimate_resolution(RefList *list, UnitCell *cell, double *min, double *max); |