aboutsummaryrefslogtreecommitdiff
path: root/src/geometry.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/geometry.c')
-rw-r--r--src/geometry.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/geometry.c b/src/geometry.c
index d91e89bc..e5cf223b 100644
--- a/src/geometry.c
+++ b/src/geometry.c
@@ -138,6 +138,13 @@ struct reflhit *find_intersections(struct image *image, UnitCell *cell,
}
+/* Return the partiality of this reflection in this image */
+double partiality(struct image *image, signed int h, signed int k, signed int l)
+{
+ return 1.0;
+}
+
+
double integrate_all(struct image *image, struct reflhit *hits, int n)
{
double itot = 0.0;