/* * index.h * * Perform indexing (somehow) * * Copyright © 2012-2017 Deutsches Elektronen-Synchrotron DESY, * a research centre of the Helmholtz Association. * Copyright © 2012 Richard Kirian * Copyright © 2012 Lorenzo Galli * * Authors: * 2010-2017 Thomas White * 2010 Richard Kirian * 2012 Lorenzo Galli * 2015 Kenneth Beyerlein * * This file is part of CrystFEL. * * CrystFEL is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * CrystFEL is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with CrystFEL. If not, see . * */ #ifndef INDEX_H #define INDEX_H #ifdef HAVE_CONFIG_H #include #endif #define INDEXING_DEFAULTS_DIRAX (INDEXING_DIRAX) #define INDEXING_DEFAULTS_ASDF (INDEXING_ASDF | INDEXING_USE_CELL_PARAMETERS) #define INDEXING_DEFAULTS_MOSFLM (INDEXING_MOSFLM | INDEXING_USE_LATTICE_TYPE \ | INDEXING_USE_CELL_PARAMETERS) #define INDEXING_DEFAULTS_FELIX (INDEXING_FELIX | INDEXING_USE_LATTICE_TYPE \ | INDEXING_USE_CELL_PARAMETERS) #define INDEXING_DEFAULTS_TAKETWO (INDEXING_TAKETWO \ | INDEXING_USE_CELL_PARAMETERS \ | INDEXING_USE_LATTICE_TYPE) #define INDEXING_DEFAULTS_XDS (INDEXING_XDS | INDEXING_USE_LATTICE_TYPE \ | INDEXING_USE_CELL_PARAMETERS) /** * IndexingMethod: * @INDEXING_NONE: No indexing to be performed * @INDEXING_DIRAX: Invoke DirAx * @INDEXING_MOSFLM: Invoke MOSFLM * @INDEXING_FELIX: Invoke Felix * @INDEXING_XDS: Invoke XDS * @INDEXING_SIMULATION: Dummy value * @INDEXING_DEBUG: Results injector for debugging * @INDEXING_ASDF: Use in-built "asdf" indexer * @INDEXING_TAKETWO: Use in-built "taketwo" indexer * @INDEXING_ERROR: Special value for unrecognised indexing engine name * @INDEXING_USE_LATTICE_TYPE: Use lattice type and centering information to * guide the indexing process. * @INDEXING_USE_CELL_PARAMETERS: Use the unit cell parameters to guide the * indexing process. * * An enumeration of all the available indexing methods. The dummy value * @INDEXING_SIMULATION is used by partial_sim to indicate that no indexing was * performed, and that the indexing results are just from simulation. **/ typedef enum { INDEXING_NONE = 0, /* The core indexing methods themselves */ INDEXING_DIRAX = 1, INDEXING_MOSFLM = 2, INDEXING_FELIX = 4, INDEXING_XDS = 5, INDEXING_SIMULATION = 6, INDEXING_DEBUG = 7, INDEXING_ASDF = 8, INDEXING_TAKETWO = 9, INDEXING_ERROR = 255, /* Unrecognised indexing engine */ /* Bits at the top of the IndexingMethod are flags which modify the * behaviour of the indexer. */ INDEXING_USE_LATTICE_TYPE = 2048, INDEXING_USE_CELL_PARAMETERS = 4096, } IndexingMethod; /* This defines the bits in "IndexingMethod" which are used to represent the * core of the indexing method */ #define INDEXING_METHOD_MASK (0xff) typedef enum { INDEXING_RETRY = 1, INDEXING_MULTI = 2, INDEXING_REFINE = 4, INDEXING_CHECK_CELL_COMBINATIONS = 8, INDEXING_CHECK_CELL_AXES = 16, INDEXING_CHECK_PEAKS = 32, } IndexingFlags; #ifdef __cplusplus extern "C" { #endif /** * IndexingPrivate: * * This is an opaque data structure containing information needed by the * indexing system. **/ typedef struct _indexingprivate IndexingPrivate; /* Convert indexing methods to/from text */ extern char *indexer_str(IndexingMethod indm); extern IndexingMethod get_indm_from_string(const char *method); extern IndexingMethod get_indm_from_string_2(const char *method, int *err); #include "detector.h" #include "cell.h" #include "image.h" #include "taketwo.h" #include "felix.h" extern IndexingPrivate *setup_indexing(const char *methods, UnitCell *cell, struct detector *det, float *ltl, IndexingFlags flags, struct taketwo_options *ttopts, struct felix_options *felix_opts); extern char *detect_indexing_methods(UnitCell *cell); extern void index_pattern(struct image *image, IndexingPrivate *ipriv); extern void index_pattern_2(struct image *image, IndexingPrivate *ipriv, int *ping); extern void cleanup_indexing(IndexingPrivate *ipriv); #ifdef __cplusplus } #endif #endif /* INDEX_H */