diff options
author | Thomas White <taw@physics.org> | 2017-09-22 16:30:23 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2017-09-22 16:31:21 +0200 |
commit | 0ba6ac905f656be5fbdda0f681e618789c1e3a27 (patch) | |
tree | a4d13a49df7c2b2f39d80d290bb909eb2405da48 /libcrystfel/src/asdf.h | |
parent | 7620fbe1a63a6ebb88cb573559dfddcdc4708750 (diff) |
Don't send detector and tolerance to indexing methods
The detector isn't used for anything, and the tolerance is none of their
business.
Diffstat (limited to 'libcrystfel/src/asdf.h')
-rw-r--r-- | libcrystfel/src/asdf.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libcrystfel/src/asdf.h b/libcrystfel/src/asdf.h index f130d63d..7f110960 100644 --- a/libcrystfel/src/asdf.h +++ b/libcrystfel/src/asdf.h @@ -45,9 +45,7 @@ extern "C" { extern int run_asdf(struct image *image, void *ipriv); -extern void *asdf_prepare(IndexingMethod *indm, - UnitCell *cell, struct detector *det, - float *ltl); +extern void *asdf_prepare(IndexingMethod *indm, UnitCell *cell); extern void asdf_cleanup(void *pp); @@ -60,9 +58,7 @@ int run_asdf(struct image *image, void *ipriv) } -void *asdf_prepare(IndexingMethod *indm, - UnitCell *cell, struct detector *det, - float *ltl) +void *asdf_prepare(IndexingMethod *indm, UnitCell *cell) { ERROR("This copy of CrystFEL was compiled without FFTW support.\n"); ERROR("To use asdf indexing, recompile with FFTW.\n"); |