aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/indexers/felix.c
diff options
context:
space:
mode:
Diffstat (limited to 'libcrystfel/src/indexers/felix.c')
-rw-r--r--libcrystfel/src/indexers/felix.c20
1 files changed, 3 insertions, 17 deletions
diff --git a/libcrystfel/src/indexers/felix.c b/libcrystfel/src/indexers/felix.c
index dcd50613..db9cccf8 100644
--- a/libcrystfel/src/indexers/felix.c
+++ b/libcrystfel/src/indexers/felix.c
@@ -62,26 +62,12 @@
#include "cell.h"
#include "cell-utils.h"
#include "felix.h"
+#include "index.h"
#define FELIX_VERBOSE 0
-struct felix_options
-{
- double ttmin; /* radians */
- double ttmax; /* radians */
- int min_visits;
- double min_completeness;
- double max_uniqueness;
- int n_voxels;
- double fraction_max_visits;
- double sigma;
- double domega;
- double max_internal_angle;
-};
-
-
/* Global private data, prepared once */
struct felix_private
{
@@ -820,9 +806,9 @@ static void felix_show_help()
}
-int felix_default_options(FelixOptions **opts_ptr)
+int felix_default_options(struct felix_options **opts_ptr)
{
- FelixOptions *opts;
+ struct felix_options *opts;
opts = malloc(sizeof(struct felix_options));
if ( opts == NULL ) return ENOMEM;