diff options
Diffstat (limited to 'src/sfac.h')
-rw-r--r-- | src/sfac.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/sfac.h b/src/sfac.h new file mode 100644 index 00000000..afa84f84 --- /dev/null +++ b/src/sfac.h @@ -0,0 +1,23 @@ +/* + * sfac.h + * + * Scattering factors + * + * (c) 2007-2009 Thomas White <thomas.white@desy.de> + * + * pattern_sim - Simulate diffraction patterns from small crystals + * + */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#ifndef SFAC_H +#define SFAC_H + +#include <complex.h> + +extern double complex get_sfac(const char *n, double s, double en); + +#endif /* SFAC_H */ |