blob: 88d385b68635df8edfe58b1e6020d08d178c129e (
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
|
/*
* intensities.h
*
* Extract integrated intensities by relrod estimation
*
* (c) 2007 Thomas White <taw27@cam.ac.uk>
*
* dtr - Diffraction Tomography Reconstruction
*
*/
#ifndef INTENSITIES_H
#define INTENSITIES_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "control.h"
extern void intensities_extract(ControlContext *ctx);
#endif /* INTENSITIES_H */
|