diff options
Diffstat (limited to 'libcrystfel/src/dirax.c')
-rw-r--r-- | libcrystfel/src/dirax.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libcrystfel/src/dirax.c b/libcrystfel/src/dirax.c index 764a6be1..f781d7e2 100644 --- a/libcrystfel/src/dirax.c +++ b/libcrystfel/src/dirax.c @@ -65,7 +65,6 @@ typedef enum { struct dirax_private { IndexingMethod indm; - float *ltl; UnitCell *template; }; @@ -601,8 +600,7 @@ int run_dirax(struct image *image, void *ipriv) } -void *dirax_prepare(IndexingMethod *indm, UnitCell *cell, - struct detector *det, float *ltl) +void *dirax_prepare(IndexingMethod *indm, UnitCell *cell) { struct dirax_private *dp; @@ -612,7 +610,6 @@ void *dirax_prepare(IndexingMethod *indm, UnitCell *cell, dp = malloc(sizeof(struct dirax_private)); if ( dp == NULL ) return NULL; - dp->ltl = ltl; dp->template = cell; dp->indm = *indm; |