aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/detector.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2014-05-16 12:04:06 +0200
committerThomas White <taw@physics.org>2014-05-16 12:05:05 +0200
commit5e885985c5703169db06872db98bfa4846ec433b (patch)
treeff79e388d912bacc5e346cb918a377565bc7a38b /libcrystfel/src/detector.h
parentf8c2d15ddbf0b21b834f00cbb3e9bbfb815a5baa (diff)
Allow bad regions to be specified as fs/ss as well as x/y
Diffstat (limited to 'libcrystfel/src/detector.h')
-rw-r--r--libcrystfel/src/detector.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/libcrystfel/src/detector.h b/libcrystfel/src/detector.h
index e44147eb..c63326fb 100644
--- a/libcrystfel/src/detector.h
+++ b/libcrystfel/src/detector.h
@@ -102,10 +102,19 @@ struct panel
struct badregion
{
char name[1024];
+ int is_fsss;
+
double min_x;
double max_x;
double min_y;
double max_y;
+
+ /* Specified INCLUSIVELY */
+ int min_fs;
+ int max_fs;
+ int min_ss;
+ int max_ss;
+
};