aboutsummaryrefslogtreecommitdiff
path: root/src/make_pixelmap.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2022-03-08 15:18:27 +0100
committerThomas White <taw@physics.org>2022-03-08 17:41:52 +0100
commitdad7c029fdfc1d0a475a86a01ecb02d2adc16dc2 (patch)
tree2e79bb418309fd9c6cd75484678fa01b374f1658 /src/make_pixelmap.c
parent0b758e3ae3c3fd66c75a42740a80afbabba5c82f (diff)
Fix slabbiness assumptions
This adds a new routine, data_template_slabby_file_to_panel_coords, to be used (only!) in places where external forces require assumptions of slabbiness: pixel maps and MsgPack/HDF5 peak lists (including CXI-style). This also fixes the prototype of data_template_file_to_panel_coords to make the panel number strictly an input parameter. This was an oversight in the implementation of DataTemplate, and caused problems when reading non-slabby streams. Fixes: https://gitlab.desy.de/thomas.white/crystfel/-/issues/66
Diffstat (limited to 'src/make_pixelmap.c')
-rw-r--r--src/make_pixelmap.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/make_pixelmap.c b/src/make_pixelmap.c
index 903f17e2..5f590bfa 100644
--- a/src/make_pixelmap.c
+++ b/src/make_pixelmap.c
@@ -310,9 +310,8 @@ int main(int argc, char *argv[])
cfs = fs + 0.5;
css = ss + 0.5;
- if ( data_template_file_to_panel_coords(dtempl,
- &cfs, &css,
- &pn) )
+ if ( data_template_slabby_file_to_panel_coords(dtempl,
+ &cfs, &css, &pn) )
{
ERROR("Couldn't convert coordinates\n");
return 1;