aboutsummaryrefslogtreecommitdiff
path: root/src/sfac.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2009-11-17 15:43:05 +0100
committerThomas White <taw@physics.org>2009-11-17 15:43:05 +0100
commit50ffbc353574996546e51a61ec4566f461769fc3 (patch)
treee5df514215814f4f6b1e0f92195b9e209e35fe90 /src/sfac.h
parent04c4c604f03d7c9729684b7b226a9ef695ece21d (diff)
Move scattering factor stuff to new file
Diffstat (limited to 'src/sfac.h')
-rw-r--r--src/sfac.h23
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 */