aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-06-10 16:40:32 +0200
committerThomas White <taw@physics.org>2020-07-29 18:53:44 +0200
commite41394e77b0c99c27a695b13c4ba24aab19b5247 (patch)
treeea17d4b7414160a75cca776de5a61fa10af97f97 /libcrystfel/src
parent58aace5662f59b50ae4d9b11e29988bc308b6e27 (diff)
Implement camera length units in data_template_to_detgeom
This is a special reduced version which cannot load metadata from an file, because no file is available in this case.
Diffstat (limited to 'libcrystfel/src')
-rw-r--r--libcrystfel/src/datatemplate.c43
1 files changed, 42 insertions, 1 deletions
diff --git a/libcrystfel/src/datatemplate.c b/libcrystfel/src/datatemplate.c
index 3e7c4c80..cfba15ea 100644
--- a/libcrystfel/src/datatemplate.c
+++ b/libcrystfel/src/datatemplate.c
@@ -1331,6 +1331,47 @@ void data_template_add_copy_header(DataTemplate *dt,
}
+static double unit_string_to_unit(const char *str)
+{
+ if ( strcmp(str, "mm") == 0 ) return 1e-3;
+ if ( strcmp(str, "m") == 0 ) return 1.0;
+ ERROR("Invalid length unit '%s'\n", str);
+ return NAN;
+}
+
+
+static double get_length(const char *from)
+{
+ double units;
+ char *sp;
+ char *fromcpy;
+ double val;
+ char *rval;
+
+ if ( from == NULL ) return NAN;
+
+ fromcpy = strdup(from);
+ if ( fromcpy == NULL ) return NAN;
+
+ sp = strchr(fromcpy, ' ');
+ if ( sp == NULL ) {
+ units = 1.0e-3;
+ } else {
+ units = unit_string_to_unit(sp+1);
+ }
+
+ sp[0] = '\0';
+ val = strtod(fromcpy, &rval);
+ if ( !( (*rval == '\0') && (rval != fromcpy)) ) {
+ ERROR("Invalid length value: %s\n", fromcpy);
+ free(fromcpy);
+ return NAN;
+ }
+
+ return val * units;
+}
+
+
/* If possible, i.e. if there are no references to image headers in
* 'dt', generate a detgeom structure from it.
*
@@ -1363,7 +1404,7 @@ struct detgeom *data_template_to_detgeom(const DataTemplate *dt)
/* NB cnx,cny are in pixels, cnz is in m */
detgeom->panels[i].cnx = dt->panels[i].cnx;
detgeom->panels[i].cny = dt->panels[i].cny;
- detgeom->panels[i].cnz = get_length(image, dt->panels[i].cnz_from);
+ detgeom->panels[i].cnz = get_length(dt->panels[i].cnz_from);
/* Apply offset (in m) and then convert cnz from
* m to pixels */