aboutsummaryrefslogtreecommitdiff
path: root/src/diffraction.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/diffraction.h')
-rw-r--r--src/diffraction.h24
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 */