diff options
author | Thomas White <taw@physics.org> | 2017-10-27 16:13:49 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2017-10-27 16:13:49 +0200 |
commit | 29d60af9d37a9d2cf67d7e0b77354d4fd518679a (patch) | |
tree | 506e4e8ef6d3e881db2790d5904813d8b9657d5e /libcrystfel/src/felix.h | |
parent | 45038c42847476ce1aee5b09c47fb330a0108cd6 (diff) | |
parent | 3caab16fad2ebd2fcc2f245a6cb4a62fad46f806 (diff) |
Merge branch 'tom/simpler_felix'
Diffstat (limited to 'libcrystfel/src/felix.h')
-rw-r--r-- | libcrystfel/src/felix.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libcrystfel/src/felix.h b/libcrystfel/src/felix.h index 61b1d352..48ffbe9c 100644 --- a/libcrystfel/src/felix.h +++ b/libcrystfel/src/felix.h @@ -36,8 +36,20 @@ #include "cell.h" +struct felix_options +{ + double ttmin; /* radians */ + double ttmax; /* radians */ + int min_measurements; + double min_completeness; + double min_uniqueness; + int n_voxels; + double test_fraction; + double sigma; +}; + extern void *felix_prepare(IndexingMethod *indm, UnitCell *cell, - const char *options); + struct felix_options *opts); extern const char *felix_probe(UnitCell *cell); |