#ifndef RECO_H #define RECO_H #include typedef struct { gboolean interactive; gchar *radios; gchar *darks; gchar *flats; gchar *output; gint width; gint height; guint num_radios; guint num_darks; gdouble dark_scale; gdouble theta; gdouble tau; gdouble psi; gdouble px; gdouble py; gdouble px_variation; gdouble v_origin[3]; guint v_size[3]; GOptionEntry *entries; gfloat *cache; } Params; gboolean params_okay (Params *params); void run_simple_reconstruction (Params *params, gchar **argv); #endif