From 6379e859edfa6003acca688ecabf09a55dfa05d8 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Thu, 1 Dec 2022 16:45:30 +0100 Subject: GUI: FoM graph, part 2: Data API --- src/gui_fom.c | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) (limited to 'src/gui_fom.c') diff --git a/src/gui_fom.c b/src/gui_fom.c index 160e84e3..3aaa3602 100644 --- a/src/gui_fom.c +++ b/src/gui_fom.c @@ -113,6 +113,39 @@ static void show_fom(enum fom_type fom, } +static double *make_shell_centers(struct fom_shells *shells) +{ + int i; + double *vals; + + vals = malloc(shells->nshells*sizeof(double)); + if ( vals == NULL ) return NULL; + + for ( i=0; inshells; i++ ) { + vals[i] = fom_shell_centre(shells, i); + } + + return vals; +} + + +static double *make_fom_vals(struct fom_context *fctx, + struct fom_shells *shells) +{ + int i; + double *vals; + + vals = malloc(shells->nshells*sizeof(double)); + if ( vals == NULL ) return NULL; + + for ( i=0; inshells; i++ ) { + vals[i] = fom_shell_value(fctx, i); + } + + return vals; +} + + static int load_dataset(struct gui_merge_result *result, int need_ano, UnitCell *cell, double min_res, double max_res, @@ -385,6 +418,9 @@ static void fom_response_sig(GtkWidget *dialog, gint resp, continue; } + double *shell_centers = malloc(shells->nshells*sizeof(double)); + double **fom_values = malloc(f->n_foms*sizeof(double *)); + for ( fom=0; fomn_foms; fom++ ) { struct fom_context *fctx; @@ -402,8 +438,16 @@ static void fom_response_sig(GtkWidget *dialog, gint resp, continue; } show_fom(f->fom_types[fom], fctx, shells); + + fom_values[fom] = make_fom_vals(fctx, shells); + } + shell_centers = make_shell_centers(shells); + crystfel_fom_graph_set_data(CRYSTFEL_FOM_GRAPH(f->graph), + shell_centers, shells->nshells, + f->fom_types, fom_values, f->n_foms); + reflist_free(all_refls); reflist_free(all_refls_anom); free_symoplist(sym); -- cgit v1.2.3