diff options
author | Thomas White <taw@physics.org> | 2017-01-27 17:30:24 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-02-27 17:12:41 +0100 |
commit | 8dc3af00b200812f8eec3bc9ada92a74fbdf4a82 (patch) | |
tree | bc9e2052574a8bda24d3749cc558c2c1f0d315e1 /libcrystfel/src/reflist.h | |
parent | ea1178d014eadb9fe8e24935693a5380b709ef33 (diff) |
Record khalf for reflections
Diffstat (limited to 'libcrystfel/src/reflist.h')
-rw-r--r-- | libcrystfel/src/reflist.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libcrystfel/src/reflist.h b/libcrystfel/src/reflist.h index 4dd1e56f..9f494474 100644 --- a/libcrystfel/src/reflist.h +++ b/libcrystfel/src/reflist.h @@ -3,11 +3,11 @@ * * Fast reflection/peak list * - * Copyright © 2012-2016 Deutsches Elektronen-Synchrotron DESY, + * Copyright © 2012-2017 Deutsches Elektronen-Synchrotron DESY, * a research centre of the Helmholtz Association. * * Authors: - * 2011-2016 Thomas White <taw@physics.org> + * 2011-2017 Thomas White <taw@physics.org> * * This file is part of CrystFEL. * @@ -87,6 +87,7 @@ extern Reflection *next_found_refl(Reflection *refl); extern void get_detector_pos(const Reflection *refl, double *fs, double *ss); extern struct panel *get_panel(const Reflection *refl); extern double get_partiality(const Reflection *refl); +extern double get_khalf(const Reflection *refl); extern double get_kpred(const Reflection *refl); extern double get_exerr(const Reflection *refl); extern double get_lorentz(const Reflection *refl); @@ -110,6 +111,7 @@ extern void copy_data(Reflection *to, const Reflection *from); extern void set_detector_pos(Reflection *refl, double fs, double ss); extern void set_panel(Reflection *refl, struct panel *p); extern void set_kpred(Reflection *refl, double kpred); +extern void set_khalf(Reflection *refl, double khalf); extern void set_exerr(Reflection *refl, double exerr); extern void set_partiality(Reflection *refl, double p); extern void set_lorentz(Reflection *refl, double L); |