blob: 38dee2251c80c49def3ca11444d4dbf1b459e304 (
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
|
/*
* refine.h
*
* Refine the reconstruction
*
* (c) 2007-2008 Thomas White <taw27@cam.ac.uk>
*
* dtr - Diffraction Tomography Reconstruction
*
*/
#ifndef REFINE_H
#define REFINE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "control.h"
extern void refine_do_sequence(ControlContext *ctx);
extern double refine_do_cell(ControlContext *ctx);
#endif /* REFINE_H */
|