From 6594902941cbf9cb1bded9bf11c465766dcf3b6d Mon Sep 17 00:00:00 2001 From: Cornelius Gati Date: Mon, 28 Jan 2013 14:49:41 +0100 Subject: Copied grainspotter.c/.h to xds.c/.h, deleted write_gve and replaced it with write_spt from mosflm.c --- libcrystfel/src/xds.h | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 libcrystfel/src/xds.h (limited to 'libcrystfel/src/xds.h') diff --git a/libcrystfel/src/xds.h b/libcrystfel/src/xds.h new file mode 100644 index 00000000..1aedf57f --- /dev/null +++ b/libcrystfel/src/xds.h @@ -0,0 +1,42 @@ +/* + * grainspotter.h + * + * Invoke GrainSpotter for multi-crystal autoindexing + * + * Copyright © 2013 Deutsches Elektronen-Synchrotron DESY, + * a research centre of the Helmholtz Association. + * + * Authors: + * 2010-2013 Thomas White + * + * 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 GRAINSPOTTER_H +#define GRAINSPOTTER_H + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include "cell.h" + + +extern void run_grainspotter(struct image *image, UnitCell *cell); + + +#endif /* GRAINSPOTTER_H */ -- cgit v1.2.3 From b163b4d6cc9bc0312b445047b2a057e685237e02 Mon Sep 17 00:00:00 2001 From: Cornelius Gati Date: Mon, 28 Jan 2013 15:47:30 +0100 Subject: Changed index.c/.h --- libcrystfel/src/xds.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'libcrystfel/src/xds.h') diff --git a/libcrystfel/src/xds.h b/libcrystfel/src/xds.h index 1aedf57f..3521ebc5 100644 --- a/libcrystfel/src/xds.h +++ b/libcrystfel/src/xds.h @@ -1,13 +1,14 @@ /* * grainspotter.h * - * Invoke GrainSpotter for multi-crystal autoindexing + * Invoke xds for crystal autoindexing * * Copyright © 2013 Deutsches Elektronen-Synchrotron DESY, * a research centre of the Helmholtz Association. * * Authors: * 2010-2013 Thomas White + * 2013 Cornelius Gati * * This file is part of CrystFEL. * @@ -26,8 +27,8 @@ * */ -#ifndef GRAINSPOTTER_H -#define GRAINSPOTTER_H +#ifndef xds_H +#define xds_H #ifdef HAVE_CONFIG_H #include @@ -36,7 +37,7 @@ #include "cell.h" -extern void run_grainspotter(struct image *image, UnitCell *cell); +extern void run_xds(struct image *image, UnitCell *cell); -#endif /* GRAINSPOTTER_H */ +#endif /* XDS_H */ -- cgit v1.2.3 From 70a08c4823808e3d35ed43334032b731aa5fe8d6 Mon Sep 17 00:00:00 2001 From: Cornelius Gati Date: Mon, 28 Jan 2013 18:31:58 +0100 Subject: Tried to fix errors in xds.c --- libcrystfel/src/xds.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcrystfel/src/xds.h') diff --git a/libcrystfel/src/xds.h b/libcrystfel/src/xds.h index 3521ebc5..edf83b0b 100644 --- a/libcrystfel/src/xds.h +++ b/libcrystfel/src/xds.h @@ -1,5 +1,5 @@ /* - * grainspotter.h + * xds.h * * Invoke xds for crystal autoindexing * -- cgit v1.2.3