aboutsummaryrefslogtreecommitdiff
path: root/src/normalise.h
blob: 5cf9839de5cd94f249f3b8ba15557c00338b55b0 (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
32
/*
 * normalise.h
 *
 * Normalisation stuff
 *
 * (c) 2006-2009 Thomas White <taw27@cam.ac.uk>
 *
 *  synth2d - Two-Dimensional Crystallographic Fourier Synthesis
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#ifndef NORMALISE_H
#define NORMALISE_H

#include "reflist.h"

extern void normalise_dialog_open(void);
extern void normalise_wilsonplot(ReflectionList *reflections);
extern void normalise_falloffplot(ReflectionList *reflections);
extern void normalise_dethermalise_open(void);
extern void normalise_exponential_open(void);
extern void normalise_exponential(ReflectionList *reflections, double a, double b, double c);
extern void normalise_dethermalise(ReflectionList *reflections, double level);
extern void normalise_execute(ReflectionList *reflections, double level);
extern double resolution(signed int h, signed int k, signed int l,
			 double a, double b, double c, double gamma);

#endif	/* NORMALISE_H */