aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2015-10-05 18:01:38 +0200
committerThomas White <taw@physics.org>2015-10-05 18:03:18 +0200
commit380954f2ad110402e6ef809feceef165310257cb (patch)
tree54f882b6d18e8a8f84ee628b28c7ab191dba349f
parent2e1ce9b32fc5e483aad97d5d1a16466f07bb2914 (diff)
Final removal of image->data
-rw-r--r--libcrystfel/src/image.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/libcrystfel/src/image.h b/libcrystfel/src/image.h
index 10e83905..52614d06 100644
--- a/libcrystfel/src/image.h
+++ b/libcrystfel/src/image.h
@@ -113,10 +113,6 @@ struct beam_params
* <programlisting>
* struct image
* {
- * float *data;
- * uint16_t *flags;
- * double *twotheta;
- *
* Crystal **crystals;
* int n_crystals;
* IndexingMethod indexed_by;
@@ -163,11 +159,6 @@ 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 */