diff options
author | Thomas White <taw@physics.org> | 2014-09-30 16:58:29 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2014-09-30 16:58:29 +0200 |
commit | 015ffcd77acc4b7f3178753b21e6591fd8212e4c (patch) | |
tree | 45f96bce23cb229067bfaf97434b9fd621b695ee /libcrystfel/src/reflist.h | |
parent | b57deca8061316d2fc09dedcf8a91fa7523f081f (diff) |
Cell vector gradients for SCSphere, plus general rationalisation
Diffstat (limited to 'libcrystfel/src/reflist.h')
-rw-r--r-- | libcrystfel/src/reflist.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libcrystfel/src/reflist.h b/libcrystfel/src/reflist.h index 6892d7f2..85a87c54 100644 --- a/libcrystfel/src/reflist.h +++ b/libcrystfel/src/reflist.h @@ -94,8 +94,8 @@ extern void get_symmetric_indices(const Reflection *refl, signed int *hs, signed int *ks, signed int *ls); extern double get_intensity(const Reflection *refl); -extern void get_partial(const Reflection *refl, double *r1, double *r2, - double *p, int *clamp_low, int *clamp_high); +extern void get_partial(const Reflection *refl, double *rlow, double *rhigh, + double *p); extern int get_redundancy(const Reflection *refl); extern double get_temp1(const Reflection *refl); extern double get_temp2(const Reflection *refl); @@ -108,8 +108,7 @@ extern double get_mean_bg(const Reflection *refl); extern void copy_data(Reflection *to, const Reflection *from); extern void set_detector_pos(Reflection *refl, double exerr, double fs, double ss); -extern void set_partial(Reflection *refl, double r1, double r2, double p, - double clamp_low, double clamp_high); +extern void set_partial(Reflection *refl, double rlow, double rhigh, double p); extern void set_partiality(Reflection *refl, double p); extern void set_lorentz(Reflection *refl, double L); extern void set_intensity(Reflection *refl, double intensity); |