diff options
author | Thomas White <taw@bitwiz.org.uk> | 2009-10-13 19:02:20 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2009-10-13 19:02:20 +0200 |
commit | a3efcb98a5c165307cc28749e26bffc12ebbf245 (patch) | |
tree | ff75387331f67f33b9e65c3484357976e20848d5 /src/relrod.h | |
parent | c49cd245a3040617ca75020ebd10a9ea3de420a2 (diff) |
Image, feature and unit cell infrastructure
Brought across from DTR and Synth3D
Diffstat (limited to 'src/relrod.h')
-rw-r--r-- | src/relrod.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/relrod.h b/src/relrod.h new file mode 100644 index 00000000..1dac6057 --- /dev/null +++ b/src/relrod.h @@ -0,0 +1,24 @@ +/* + * relrod.h + * + * Calculate reflection positions via line-sphere intersection test + * + * (c) 2007-2009 Thomas White <thomas.white@desy.de> + * + * template_index - Indexing diffraction patterns by template matching + * + */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#ifndef RELROD_H +#define RELROD_H + +#include "image.h" +#include "cell.h" + +extern void get_reflections(struct image *image, UnitCell *cell); + +#endif /* RELROD_H */ |