blob: a10fafe4154426b0d25a1942d8e8c5fafec85852 (
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
30
31
|
/*
* post-refinement.h
*
* Post refinement
*
* (c) 2006-2011 Thomas White <taw@physics.org>
*
* Part of CrystFEL - crystallography with a FEL
*
*/
#ifndef POST_REFINEMENT_H
#define POST_REFINEMENT_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include "image.h"
#include "utils.h"
extern void pr_refine(struct image *image, const double *i_full,
const char *sym);
#endif /* POST_REFINEMENT_H */
|