diff options
author | Thomas White <taw@physics.org> | 2009-11-12 18:50:14 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2009-11-12 18:50:14 +0100 |
commit | 857cc8c991a5ee4e717d01822da271ae34f5adaa (patch) | |
tree | 891d9f6e63370871726fe78d23d8b6e3796d92fc /src/detector.h | |
parent | c9a551b872ae4eb16a606d46a7cf118af24f75f5 (diff) |
Add 'detector' module
Diffstat (limited to 'src/detector.h')
-rw-r--r-- | src/detector.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/detector.h b/src/detector.h new file mode 100644 index 00000000..2f6680c4 --- /dev/null +++ b/src/detector.h @@ -0,0 +1,23 @@ +/* + * detector.h + * + * Detector properties + * + * (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 DETECTOR_H +#define DETECTOR_H + +#include "image.h" + +extern void record_image(struct image *image); + +#endif /* DETECTOR_H */ |