From 051654a3f4b931fe2c105c2996d4ddf1c9ed7924 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 9 Mar 2012 19:05:50 +0100 Subject: Remove integr_radius field from detector description --- libcrystfel/src/detector.c | 5 ----- libcrystfel/src/detector.h | 1 - 2 files changed, 6 deletions(-) (limited to 'libcrystfel') diff --git a/libcrystfel/src/detector.c b/libcrystfel/src/detector.c index 491f7e8a..685767c0 100644 --- a/libcrystfel/src/detector.c +++ b/libcrystfel/src/detector.c @@ -603,8 +603,6 @@ static int parse_field_for_panel(struct panel *panel, const char *key, panel->res = atof(val); } else if ( strcmp(key, "peak_sep") == 0 ) { panel->peak_sep = atof(val); - } else if ( strcmp(key, "integr_radius") == 0 ) { - panel->integr_radius = atof(val); } else if ( strcmp(key, "badrow_direction") == 0 ) { panel->badrow = val[0]; /* First character only */ if ( (panel->badrow != 'x') && (panel->badrow != 'y') @@ -684,8 +682,6 @@ static void parse_toplevel(struct detector *det, const char *key, } else if ( strcmp(key, "peak_sep") == 0 ) { det->defaults.peak_sep = atof(val); - } else if ( strcmp(key, "integr_radius") == 0 ) { - det->defaults.integr_radius = atof(val); } else if ( strcmp(key, "coffset") == 0 ) { det->defaults.coffset = atof(val); } else if ( parse_field_for_panel(&det->defaults, key, val, det) ) { @@ -736,7 +732,6 @@ struct detector *get_detector_geometry(const char *filename) det->defaults.badrow = '-'; det->defaults.no_index = 0; det->defaults.peak_sep = 50.0; - det->defaults.integr_radius = 3.0; det->defaults.fsx = 1.0; det->defaults.fsy = 0.0; det->defaults.ssx = 0.0; diff --git a/libcrystfel/src/detector.h b/libcrystfel/src/detector.h index 7214ac29..799719f8 100644 --- a/libcrystfel/src/detector.h +++ b/libcrystfel/src/detector.h @@ -61,7 +61,6 @@ struct panel char badrow; /* 'x' or 'y' */ int no_index; /* Don't index peaks in this panel if non-zero */ double peak_sep; /* Characteristic peak separation */ - double integr_radius; /* Peak integration radius */ char *rigid_group; /* Rigid group, or -1 for none */ double adu_per_eV; /* Number of ADU per eV */ -- cgit v1.2.3