aboutsummaryrefslogtreecommitdiff
path: root/src/im-sandbox.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2017-09-21 16:18:22 +0200
committerThomas White <taw@physics.org>2017-09-21 16:18:22 +0200
commit6239330e483a47c3579b89c407ac02346f388e27 (patch)
tree0b95f7e18b6b7fc6394843b489944ef31327d360 /src/im-sandbox.c
parentbd5585847aea5f55fc33cd8a40ba9ffd8b7f425f (diff)
Improve error message when using CBF files and a multi-event geometry
Diffstat (limited to 'src/im-sandbox.c')
-rw-r--r--src/im-sandbox.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/im-sandbox.c b/src/im-sandbox.c
index 60400ad8..8b7eb29c 100644
--- a/src/im-sandbox.c
+++ b/src/im-sandbox.c
@@ -219,6 +219,14 @@ static struct filename_plus_event *get_pattern(FILE *fh, int config_basename,
if ( det->path_dim != 0 || det->dim_dim != 0 ) {
+ if ( is_cbf_file(filename) ) {
+ ERROR("Your geometry file is for a multi-event "
+ "format, but this file is in CBF format.\n");
+ ERROR("Your geometry file probably needs to be "
+ "changed.\n");
+ return NULL;
+ }
+
ev_list = initialize_event_list();
if ( scan_check == 1 ) {