aboutsummaryrefslogtreecommitdiff
path: root/src/gui_project.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-08-14 16:48:03 +0200
committerThomas White <taw@physics.org>2020-08-14 16:48:03 +0200
commit3df62e76acbd0c7455c786eb07499c228cbe8457 (patch)
tree5d2b3e140e42f51c5f7f82044e7902aabb606b03 /src/gui_project.h
parent1323191a533b420bb9119960f41bfcf0175a18ad (diff)
Hook up (almost all) indexing parameters
Diffstat (limited to 'src/gui_project.h')
-rw-r--r--src/gui_project.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/gui_project.h b/src/gui_project.h
index bd4904fd..313a748a 100644
--- a/src/gui_project.h
+++ b/src/gui_project.h
@@ -64,6 +64,25 @@ struct peak_params {
int revalidate;
};
+struct index_params {
+
+ /* Indexing */
+ char *cell_file;
+ char *indexing_methods;
+ int multi;
+ int no_refine;
+ int no_retry;
+ int no_peak_check;
+ int no_cell_check;
+ float tols[6];
+ int min_peaks;
+
+ /* Integration */
+ char *integration_method;
+ int overpredict;
+ float push_res;
+};
+
struct crystfelproject {
GtkWidget *window;
@@ -98,6 +117,8 @@ struct crystfelproject {
struct peak_params peak_search_params;
int show_refls;
+ struct index_params indexing_params;
+ GtkWidget *indexing_opts;
GtkWidget *type_combo;
GtkWidget *peak_vbox; /* Box for peak search parameter widgets */