aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/fom.c
diff options
context:
space:
mode:
Diffstat (limited to 'libcrystfel/src/fom.c')
-rw-r--r--libcrystfel/src/fom.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/libcrystfel/src/fom.c b/libcrystfel/src/fom.c
index c3ac934e..2d3623ea 100644
--- a/libcrystfel/src/fom.c
+++ b/libcrystfel/src/fom.c
@@ -70,25 +70,6 @@ struct fom_context
long int *possible;
};
-enum fom_type fom_type_from_string(const char *s)
-{
- if ( strcasecmp(s, "r1i") == 0 ) return FOM_R1I;
- if ( strcasecmp(s, "r1f") == 0 ) return FOM_R1F;
- if ( strcasecmp(s, "r2") == 0 ) return FOM_R2;
- if ( strcasecmp(s, "rsplit") == 0 ) return FOM_RSPLIT;
- if ( strcasecmp(s, "cc") == 0 ) return FOM_CC;
- if ( strcasecmp(s, "ccstar") == 0 ) return FOM_CCSTAR;
- if ( strcasecmp(s, "ccano") == 0 ) return FOM_CCANO;
- if ( strcasecmp(s, "crdano") == 0 ) return FOM_CRDANO;
- if ( strcasecmp(s, "rano") == 0 ) return FOM_RANO;
- if ( strcasecmp(s, "rano/rsplit") == 0 ) return FOM_RANORSPLIT;
- if ( strcasecmp(s, "d1sig") == 0 ) return FOM_D1SIG;
- if ( strcasecmp(s, "d2sig") == 0 ) return FOM_D2SIG;
-
- ERROR("Unknown figure of merit '%s'.\n", s);
- exit(1);
-}
-
static struct fom_context *init_fom(enum fom_type fom, int nmax, int nshells)
{