aboutsummaryrefslogtreecommitdiff
path: root/src/geometry.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-08-24 18:31:44 +0200
committerThomas White <taw@physics.org>2012-02-22 15:26:56 +0100
commit1c68a9455e3ccbbb37a9e74914371f82a4ac588d (patch)
tree2309ceda2f55a9d5d759cd7eef42cd4ba336ac13 /src/geometry.h
parent06ad4f710ced8ef552e8ddde7fc6d92b2bde5fdc (diff)
Add missing geometry.{c,h}
Diffstat (limited to 'src/geometry.h')
-rw-r--r--src/geometry.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/geometry.h b/src/geometry.h
new file mode 100644
index 00000000..a1e73127
--- /dev/null
+++ b/src/geometry.h
@@ -0,0 +1,27 @@
+/*
+ * geometry.h
+ *
+ * Geometry of diffraction
+ *
+ * (c) 2006-2010 Thomas White <taw@physics.org>
+ *
+ * Part of CrystFEL - crystallography with a FEL
+ *
+ */
+
+#ifndef GEOMETRY_H
+#define GEOMETRY_H
+
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+extern struct reflhit *find_intersections(struct image *image, UnitCell *cell,
+ double divergence, double bandwidth,
+ int *n, int output);
+
+extern double integrate_all(struct image *image, struct reflhit *hits, int n);
+
+
+#endif /* GEOMETRY_H */