blob: c46356137ce14a9693de4933beee9f587ad1e17b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* dirax.h
*
* Invoke the DirAx auto-indexing program
* also: handle DirAx input files
*
* (c) 2007 Thomas White <taw27@cam.ac.uk>
*
* dtr - Diffraction Tomography Reconstruction
*
*/
#ifndef DIRAX_H
#define DIRAX_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "control.h"
#include "reflections.h"
extern void dirax_invoke(ControlContext *ctx);
extern void dirax_stop(ControlContext *ctx);
extern ReflectionList *dirax_load(const char *filename);
extern int dirax_is_drxfile(const char *filename);
#endif /* DIRAX_H */
|