aboutsummaryrefslogtreecommitdiff
path: root/src/crystfelindexingopts.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2021-03-15 14:27:58 +0100
committerThomas White <taw@physics.org>2021-03-15 14:27:58 +0100
commit88c41a8e26b31d86d6116cc5bc220e34bcb92ec1 (patch)
tree8386f0752894054ac178f19eaa3433da646ed290 /src/crystfelindexingopts.h
parente21cc1f84a8cb2b0627e99383c882e59efda4920 (diff)
GUI: Add interface for --fix-profile-radius and --fix-divergence
Diffstat (limited to 'src/crystfelindexingopts.h')
-rw-r--r--src/crystfelindexingopts.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/crystfelindexingopts.h b/src/crystfelindexingopts.h
index 72ca8c37..fe5f4ccd 100644
--- a/src/crystfelindexingopts.h
+++ b/src/crystfelindexingopts.h
@@ -79,6 +79,9 @@ struct _crystfelindexingopts
GtkWidget *ir_inn;
GtkWidget *ir_mid;
GtkWidget *ir_out;
+ GtkWidget *fix_profile_radius_p;
+ GtkWidget *fix_profile_radius;
+ GtkWidget *fix_divergence;
GtkWidget *exclude_nonhits;
GtkWidget *no_peaks_in_stream;
@@ -120,6 +123,14 @@ extern int crystfel_indexing_opts_get_exclude_peaks(CrystFELIndexingOpts *opts);
extern int crystfel_indexing_opts_get_exclude_reflections(CrystFELIndexingOpts *opts);
extern char **crystfel_indexing_opts_get_metadata_to_copy(CrystFELIndexingOpts *opts,
int *n);
+extern double crystfel_indexing_opts_get_fixed_profile_radius(CrystFELIndexingOpts *opts,
+ int *active);
+extern double crystfel_indexing_opts_get_fixed_divergence(CrystFELIndexingOpts *opts);
+
+
+
+
+
extern void crystfel_indexing_opts_set_show_stream_opts(CrystFELIndexingOpts *opts,
int val);
@@ -162,5 +173,11 @@ extern void crystfel_indexing_opts_set_exclude_peaks(CrystFELIndexingOpts *opts,
int flag);
extern void crystfel_indexing_opts_set_exclude_reflections(CrystFELIndexingOpts *opts,
int flag);
+extern void crystfel_indexing_opts_set_fixed_profile_radius(CrystFELIndexingOpts *opts,
+ int active,
+ double val);
+extern void crystfel_indexing_opts_set_fixed_divergence(CrystFELIndexingOpts *opts,
+ double val);
+
#endif /* CRYSTFELINDEXINGOPTS_H */