diff options
author | Thomas White <taw@physics.org> | 2013-02-18 14:51:36 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-02-18 14:51:36 +0100 |
commit | 31ec28ea0258bbb2272afa4346b55b183a43410c (patch) | |
tree | e5c3df47166401b9a80384a2f5f137d674f5bef9 /libcrystfel/src/xds.h | |
parent | a0f4c1506f1d7c1ad942bcccd30d3aaf0cd75bd4 (diff) | |
parent | 3732cd6e08e4b0e6b6eaafc01290bc2c23e9ec66 (diff) |
Merge branch 'cornelius/xds' into tom/multicrystal
Conflicts:
libcrystfel/Makefile.am
libcrystfel/src/index.c
libcrystfel/src/index.h
Diffstat (limited to 'libcrystfel/src/xds.h')
-rw-r--r-- | libcrystfel/src/xds.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/libcrystfel/src/xds.h b/libcrystfel/src/xds.h new file mode 100644 index 00000000..edf83b0b --- /dev/null +++ b/libcrystfel/src/xds.h @@ -0,0 +1,43 @@ +/* + * xds.h + * + * Invoke xds for crystal autoindexing + * + * Copyright © 2013 Deutsches Elektronen-Synchrotron DESY, + * a research centre of the Helmholtz Association. + * + * Authors: + * 2010-2013 Thomas White <taw@physics.org> + * 2013 Cornelius Gati <cornelius.gati@cfel.de> + * + * 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 <http://www.gnu.org/licenses/>. + * + */ + +#ifndef xds_H +#define xds_H + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include "cell.h" + + +extern void run_xds(struct image *image, UnitCell *cell); + + +#endif /* XDS_H */ |