diff options
author | Thomas White <taw@physics.org> | 2020-03-16 11:31:47 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-07-29 18:42:24 +0200 |
commit | 43a5b52f414eb6591ba8533435ae61c0a2fcd7e7 (patch) | |
tree | 3f00ccfd0ddae866b0f2967cca4dba5d2d6796f5 /src/crystfel_gui.h | |
parent | 6ec178c76a4298680f497b3a043ec1198d3a66b2 (diff) |
Skeleton indexing and backend stuff
Diffstat (limited to 'src/crystfel_gui.h')
-rw-r--r-- | src/crystfel_gui.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/crystfel_gui.h b/src/crystfel_gui.h index 7706a34a..39d37de0 100644 --- a/src/crystfel_gui.h +++ b/src/crystfel_gui.h @@ -29,6 +29,10 @@ #ifndef CRYSTFEL_GUI_H #define CRYSTFEL_GUI_H +#include <gtk/gtk.h> + +#include <peaks.h> + struct peak_params { enum peak_search_method method; float threshold; /* zaef, pf8 */ @@ -49,6 +53,12 @@ struct peak_params { int half_pixel_shift; /* cxi, hdf5 */ }; +struct crystfelproject; + +struct crystfel_backend { + int (*run_unitcell)(struct crystfelproject *proj); +}; + struct crystfelproject { @@ -80,6 +90,10 @@ struct crystfelproject { GtkWidget *peak_vbox; /* Box for peak search parameter widgets */ GtkWidget *peak_params; /* Peak search parameter widgets */ struct peak_params original_params; + + GtkWidget *unitcell_combo; + + struct crystfel_backend *backend; }; #endif |