diff options
author | Thomas White <taw@bitwiz.org.uk> | 2009-10-23 12:00:29 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2009-10-23 12:00:29 +0200 |
commit | f09b0fc4da61d107dffc0d45489b769326fd8a08 (patch) | |
tree | 02ebe57032f0db9e68078c6ed08d413aa8c7b323 /src/diffraction.h | |
parent | 2600c19c6d9b994de1cb2d5e634571a55434c707 (diff) |
Restructuring ready for new simulation method
Diffstat (limited to 'src/diffraction.h')
-rw-r--r-- | src/diffraction.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/diffraction.h b/src/diffraction.h new file mode 100644 index 00000000..c32e62c2 --- /dev/null +++ b/src/diffraction.h @@ -0,0 +1,24 @@ +/* + * diffraction.h + * + * Calculate diffraction patterns by Fourier methods + * + * (c) 2007-2009 Thomas White <thomas.white@desy.de> + * + * pattern_sim - Simulate diffraction patterns from small crystals + * + */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#ifndef DIFFRACTION_H +#define DIFFRACTION_H + +#include "image.h" +#include "cell.h" + +extern void get_diffraction(struct image *image, UnitCell *cell); + +#endif /* DIFFRACTION_H */ |