diff options
author | Thomas White <taw@bitwiz.org.uk> | 2010-06-05 20:02:22 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2010-06-05 20:02:22 +0200 |
commit | 8ead809d4fb09047e7c146d405dbc0e97103ec3c (patch) | |
tree | d05b218def2ebffb0460905ca8214ca53735d819 /src/reflections.h | |
parent | 509f08dc3216bdb80e04e012e916c019dea31355 (diff) |
pattern_sim: Implement phased gradients
Diffstat (limited to 'src/reflections.h')
-rw-r--r-- | src/reflections.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/reflections.h b/src/reflections.h index 052ddf9f..060a32c8 100644 --- a/src/reflections.h +++ b/src/reflections.h @@ -21,10 +21,11 @@ extern void write_reflections(const char *filename, unsigned int *counts, - double *ref, int zone_axis, UnitCell *cell, - unsigned int min_counts); + double *ref, double *phases, int zone_axis, + UnitCell *cell, unsigned int min_counts); -extern double *read_reflections(const char *filename, unsigned int *counts); +extern double *read_reflections(const char *filename, unsigned int *counts, + double *phases); extern double *ideal_intensities(double complex *sfac); |