aboutsummaryrefslogtreecommitdiff
path: root/src/reflections.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2009-12-04 14:17:35 +0100
committerThomas White <taw@physics.org>2009-12-04 14:21:46 +0100
commit3849a9692813ddd850b5e2ce1bec8a32b43b5900 (patch)
tree2e8287f897dd1431ff37e8af386ff9673db7f6f4 /src/reflections.h
parentba72cc21bb8a36e3fb0ac8e7da69157ae1aed918 (diff)
Add new program: get_hkl, for generating ideal intensity lists
Diffstat (limited to 'src/reflections.h')
-rw-r--r--src/reflections.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/reflections.h b/src/reflections.h
new file mode 100644
index 00000000..ac35ae1e
--- /dev/null
+++ b/src/reflections.h
@@ -0,0 +1,29 @@
+/*
+ * reflections.h
+ *
+ * Utilities for handling reflections
+ *
+ * (c) 2007-2009 Thomas White <thomas.white@desy.de>
+ *
+ * Part of CrystFEL - crystallography with a FEL
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#ifndef REFLECTIONS_H
+#define REFLECTIONS_H
+
+
+#include "cell.h"
+
+
+extern void write_reflections(const char *filename, unsigned int *counts,
+ double *ref, int zone_axis, UnitCell *cell);
+
+extern double *ideal_intensities(double complex *sfac);
+
+
+#endif /* REFLECTIONS_H */