diff options
Diffstat (limited to 'src/image.h')
-rw-r--r-- | src/image.h | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/src/image.h b/src/image.h index 613b0989..decbbab8 100644 --- a/src/image.h +++ b/src/image.h @@ -82,21 +82,26 @@ struct image { struct reflhit *hits; int n_hits; - int id; + int id; /* ID number of the thread + * handling this image */ + /* Information about the crystal */ struct quaternion orientation; + double m; /* Mosaicity in radians */ - /* Wavelength must always be given */ - double lambda; /* Wavelength in m */ - /* Incident intensity (if unknown, put 1.0) */ - double f0; - int f0_available; + /* Information about the radiation */ + double lambda; /* Wavelength in m */ + double div; /* Divergence in radians */ + double bw; /* Bandwidth as a fraction */ + double f0; /* Incident intensity */ + int f0_available; /* 0 if f0 wasn't available + * from the input. */ int width; int height; - ImageFeatureList *features; /* "Experimental" features */ + ImageFeatureList *features; /* DirAx auto-indexing low-level stuff */ int dirax_pty; |