aboutsummaryrefslogtreecommitdiff
path: root/src/compare_hkl.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2021-01-22 15:52:37 +0100
committerThomas White <taw@physics.org>2021-01-22 15:57:33 +0100
commitcfdbf3be72e936450d5cf09691fc0320c3752e66 (patch)
tree15be6140e3ed3a6e2bb283e6bf81418db663d4ef /src/compare_hkl.c
parenta8911944b66861b692e5e36c8e9374439b9649b2 (diff)
Improve names for FoM API
Diffstat (limited to 'src/compare_hkl.c')
-rw-r--r--src/compare_hkl.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/compare_hkl.c b/src/compare_hkl.c
index d4efcd05..1d82f01c 100644
--- a/src/compare_hkl.c
+++ b/src/compare_hkl.c
@@ -83,12 +83,12 @@ static void show_help(const char *s)
static void do_fom(RefList *list1, RefList *list2, UnitCell *cell,
- double rmin, double rmax, enum fom fom,
+ double rmin, double rmax, enum fom_type fom,
int config_unity, int nshells, const char *filename,
int config_intshells, double min_I, double max_I,
SymOpList *sym)
{
- struct shells *shells;
+ struct fom_shells *shells;
struct fom_context *fctx;
FILE *fh;
int i;
@@ -96,9 +96,9 @@ static void do_fom(RefList *list1, RefList *list2, UnitCell *cell,
/* Calculate the bins */
if ( config_intshells ) {
- shells = make_intensity_shells(min_I, max_I, nshells);
+ shells = fom_make_intensity_shells(min_I, max_I, nshells);
} else {
- shells = make_resolution_shells(rmin, rmax, nshells);
+ shells = fom_make_resolution_shells(rmin, rmax, nshells);
}
if ( shells == NULL ) {
@@ -234,7 +234,7 @@ static void do_fom(RefList *list1, RefList *list2, UnitCell *cell,
double r, cen;
- cen = shell_label(shells, i);
+ cen = fom_shell_label(shells, i);
r = fom_shell(fctx, i);
switch ( fom ) {
@@ -349,7 +349,7 @@ int main(int argc, char *argv[])
RefList *list2;
RefList *list1_raw;
RefList *list2_raw;
- enum fom fom = FOM_R1I;
+ enum fom_type fom = FOM_R1I;
char *cellfile = NULL;
float rmin_fix = -1.0;
float rmax_fix = -1.0;
@@ -439,7 +439,7 @@ int main(int argc, char *argv[])
break;
case 4 :
- fom = get_fom(optarg);
+ fom = fom_type_from_string(optarg);
break;
case 5 :