aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libcrystfel/src/datatemplate.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/libcrystfel/src/datatemplate.c b/libcrystfel/src/datatemplate.c
index 0ddbe107..504f0514 100644
--- a/libcrystfel/src/datatemplate.c
+++ b/libcrystfel/src/datatemplate.c
@@ -1351,6 +1351,16 @@ DataTemplate *data_template_new_from_string(const char *string_in)
j, p->name);
reject = 1;
}
+
+ if ( (mt->good_bits || mt->bad_bits)
+ && (mt->filename == NULL)
+ && (mt->data_location == NULL) )
+ {
+ ERROR("You have specified good/bad bits for "
+ "mask %i of panel %s, but not the mask "
+ "location.\n", j, p->name);
+ reject = 1;
+ }
}
}