diff options
author | Thomas White <taw@physics.org> | 2010-10-08 14:44:21 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:01 +0100 |
commit | 59b806107c0bd532d4f315422547f2aaede460cd (patch) | |
tree | a4fccf08bd46ea747a4e145613d58b1f60c96aff /src/image.h | |
parent | 8ed37ffb1dbdaeddb557216a5c50561bda8c40ca (diff) |
facetron: Lots of framework stuff
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; |