diff options
author | Thomas White <taw@physics.org> | 2013-05-23 14:12:52 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-05-27 17:33:15 +0200 |
commit | bc6e617c339fdd4e1be6042cb8b70fe9a704c863 (patch) | |
tree | d83c779d4917a559ded079f99117b53ede59ca9f /libcrystfel/src/image.h | |
parent | 4fd346391387f740c29561257a5af3fdfdd56700 (diff) |
Individual panel arrays
Diffstat (limited to 'libcrystfel/src/image.h')
-rw-r--r-- | libcrystfel/src/image.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcrystfel/src/image.h b/libcrystfel/src/image.h index 0d131451..a1ac75a3 100644 --- a/libcrystfel/src/image.h +++ b/libcrystfel/src/image.h @@ -124,10 +124,14 @@ struct image; struct image { + /* The following three fields will be going away in the future */ float *data; uint16_t *flags; double *twotheta; + float **dp; /* Data in panel */ + int **bad; /* Bad pixels by panel */ + Crystal **crystals; int n_crystals; IndexingMethod indexed_by; |