diff options
author | Richard Kirian <rkirian@asu.edu> | 2010-12-08 15:00:44 -0700 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:08 +0100 |
commit | 38e84c0bd440b03148fd6919d9e4c7852efee923 (patch) | |
tree | e2885c7a7045982574c83694cc6672501c83699d /src/indexamajig.c | |
parent | 4a2a0d658d251371c136efe5160ba5081498f970 (diff) |
added fake mosflm support (runs dirax)
Diffstat (limited to 'src/indexamajig.c')
-rw-r--r-- | src/indexamajig.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/indexamajig.c b/src/indexamajig.c index 5a33e74d..8d762fa4 100644 --- a/src/indexamajig.c +++ b/src/indexamajig.c @@ -127,6 +127,7 @@ static void show_help(const char *s) " --indexing=<method> Use 'method' for indexing. Choose from:\n" " none : no indexing (default)\n" " dirax : invoke DirAx\n" +" mosflm : invoke MOSFLM (DPS)\n" " template : index by template matching\n" " -g. --geometry=<file> Get detector geometry from file.\n" " -b, --beam=<file> Get beam parameters from file (provides nominal\n" @@ -788,6 +789,8 @@ int main(int argc, char *argv[]) indm = INDEXING_NONE; } else if ( strcmp(indm_str, "dirax") == 0) { indm = INDEXING_DIRAX; + } else if ( strcmp(indm_str, "mosflm") == 0) { + indm = INDEXING_MOSFLM; } else if ( strcmp(indm_str, "template") == 0) { indm = INDEXING_TEMPLATE; } else { |