diff options
author | Thomas White <taw@physics.org> | 2010-12-03 15:04:02 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:07 +0100 |
commit | 27d14f0b1391bbc6d667eb9c82e78c3b02052e5a (patch) | |
tree | 136e6a3ac7ec8eaf4f36a9a88913838c090125c3 /src/diffraction.h | |
parent | 796feb582e9dff7511c411f0e97dcdf382a6f85d (diff) |
Use symmetry when simulating (on the CPU only)
Diffstat (limited to 'src/diffraction.h')
-rw-r--r-- | src/diffraction.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/diffraction.h b/src/diffraction.h index 5a88bff7..607b066e 100644 --- a/src/diffraction.h +++ b/src/diffraction.h @@ -26,7 +26,8 @@ typedef enum { } GradientMethod; extern void get_diffraction(struct image *image, int na, int nb, int nc, - const double *intensities,const double *phases, - UnitCell *cell, int do_water, GradientMethod m); + const double *intensities, const double *phases, + const unsigned char *flags, UnitCell *cell, + int do_water, GradientMethod m, const char *sym); #endif /* DIFFRACTION_H */ |