/* * ipr.h * * Iterative prediction-refinement reconstruction * * (c) 2007 Thomas White * * dtr - Diffraction Tomography Reconstruction * */ #ifdef HAVE_CONFIG_H #include #endif #ifndef IPR_H #define IPR_H typedef struct { double x; double y; double z; double modulus; /* Convenience */ } Vector; typedef struct basis_struct { Vector a; Vector b; Vector c; } Basis; #include "control.h" extern int ipr_refine(ControlContext *ctx); #endif /* IPR_H */