aboutsummaryrefslogtreecommitdiff
path: root/src/symmetry.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2010-06-22 01:55:24 +0200
committerThomas White <taw@physics.org>2012-02-22 15:26:50 +0100
commit48d0b9b12474e2c73411c234ef972a0a4a692e34 (patch)
tree066a489d7c3f2337ececc755773a7eaa71abff86 /src/symmetry.c
parent7c9587d69305edd53487a61cc8f5a26cc1373638 (diff)
process_hkl: Add symmetry module
Diffstat (limited to 'src/symmetry.c')
-rw-r--r--src/symmetry.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/symmetry.c b/src/symmetry.c
new file mode 100644
index 00000000..7a6a5ed6
--- /dev/null
+++ b/src/symmetry.c
@@ -0,0 +1,23 @@
+/*
+ * symmetry.c
+ *
+ * Symmetry
+ *
+ * (c) 2006-2010 Thomas White <taw@physics.org>
+ *
+ * Part of CrystFEL - crystallography with a FEL
+ *
+ */
+
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <math.h>
+
+void apply_symmetry(double ref, unsigned int *counts, const char *sym)
+{
+}