aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/indexers/pinkindexer.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2021-07-14 11:31:42 +0200
committerThomas White <taw@physics.org>2021-07-14 11:31:42 +0200
commit1a60c142dc919cf9765547c3c79be10155d3a873 (patch)
tree8e2c21ef511537260abaf5aad07da9cebddfdce1 /libcrystfel/src/indexers/pinkindexer.h
parent4960248e89b3083ebdeddbfdef6bea83ad5225c8 (diff)
Make all the indexer-specific option structures non-opaque
Making them opaque seemed like a nice idea, because all the indexers could take care of their own command-line arguments. However, it doesn't work at all when indexing is run via the API.
Diffstat (limited to 'libcrystfel/src/indexers/pinkindexer.h')
-rw-r--r--libcrystfel/src/indexers/pinkindexer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcrystfel/src/indexers/pinkindexer.h b/libcrystfel/src/indexers/pinkindexer.h
index 122bac87..c75b5551 100644
--- a/libcrystfel/src/indexers/pinkindexer.h
+++ b/libcrystfel/src/indexers/pinkindexer.h
@@ -35,13 +35,13 @@
#include "index.h"
#include "datatemplate.h"
-extern int pinkIndexer_default_options(PinkIndexerOptions **opts_ptr);
+extern int pinkIndexer_default_options(struct pinkindexer_options **opts_ptr);
extern int run_pinkIndexer(struct image *image, void *ipriv, int n_threads);
extern void *pinkIndexer_prepare(IndexingMethod *indm,
UnitCell *cell,
- struct pinkIndexer_options *pinkIndexer_opts,
+ struct pinkindexer_options *pinkIndexer_opts,
double wavelength_estimate,
double clen_estimate);