diff options
author | Thomas White <taw@physics.org> | 2014-03-03 15:44:26 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2014-03-03 15:44:26 +0100 |
commit | ee2a9703c723d807c4e590906ab6a45868651a81 (patch) | |
tree | 142c4f23c63cc1648a81c71f603489a361258918 /libcrystfel/src/reflist.h | |
parent | 8a15866307f7dde7ba70ed9de756cf0392904e30 (diff) |
Include background and peak height in stream
Diffstat (limited to 'libcrystfel/src/reflist.h')
-rw-r--r-- | libcrystfel/src/reflist.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcrystfel/src/reflist.h b/libcrystfel/src/reflist.h index 7969235c..61cac9d5 100644 --- a/libcrystfel/src/reflist.h +++ b/libcrystfel/src/reflist.h @@ -94,6 +94,8 @@ extern double get_temp1(const Reflection *refl); extern double get_temp2(const Reflection *refl); extern double get_esd_intensity(const Reflection *refl); extern double get_phase(const Reflection *refl, int *have_phase); +extern double get_peak(const Reflection *refl); +extern double get_mean_bg(const Reflection *refl); /* Set */ extern void copy_data(Reflection *to, const Reflection *from); @@ -111,6 +113,8 @@ extern void set_temp1(Reflection *refl, double temp); extern void set_temp2(Reflection *refl, double temp); extern void set_esd_intensity(Reflection *refl, double esd); extern void set_phase(Reflection *refl, double phase); +extern void set_peak(Reflection *refl, double pk); +extern void set_mean_bg(Reflection *refl, double bg); extern void set_symmetric_indices(Reflection *refl, signed int hs, signed int ks, signed int ls); |