diff options
author | Thomas White <taw@physics.org> | 2009-11-12 18:03:12 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2009-11-12 18:03:12 +0100 |
commit | c9a551b872ae4eb16a606d46a7cf118af24f75f5 (patch) | |
tree | 9c57f03f8acb742186796e0d3a55914b61183c65 /src/ewald.h | |
parent | 2008d998a48301aef17c6247b17c4c5b92a87fdc (diff) |
Loads of lattice stuff
Diffstat (limited to 'src/ewald.h')
-rw-r--r-- | src/ewald.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/ewald.h b/src/ewald.h new file mode 100644 index 00000000..ffa6e162 --- /dev/null +++ b/src/ewald.h @@ -0,0 +1,23 @@ +/* + * ewald.h + * + * Calculate q-vector arrays + * + * (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 EWALD_H +#define EWALD_H + +#include "image.h" + +extern void get_ewald(struct image *image); + +#endif /* EWALD_H */ |