aboutsummaryrefslogtreecommitdiff
path: root/src/reflections.c
blob: ab7738e40c1cc073d1cc7e34f09d828fd8b86509 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
 * reflections.c
 *
 * Utilities for handling reflections
 *
 * (c) 2006-2010 Thomas White <taw@physics.org>
 *
 * Part of CrystFEL - crystallography with a FEL
 *
 */


#include <stdlib.h>
#include <math.h>
#include <stdio.h>
#include <complex.h>
#include <string.h>

#include "utils.h"
#include "cell.h"
#include "reflections.h"


void write_reflections(const char *filename, unsigned int *counts,
                       double *ref, int zone_axis, UnitCell *cell)
{
	FILE *fh;
	signed int h, k, l;

	if ( filename == NULL ) {
		fh = stdout;
	} else {
		fh = fopen(filename, "w");
	}

	if ( fh == NULL ) {
		ERROR("Couldn't open output file!\n");
		return;
	}

	/* Write spacings and angle if zone axis pattern */
	if ( zone_axis ) {
		double a, b, c, alpha, beta, gamma;
		cell_get_parameters(cell, &a, &b, &c, &alpha, &beta, &gamma);
		fprintf(fh, "a %5.3f nm\n", a*1e9);
		fprintf(fh, "b %5.3f nm\n", b*1e9);
		fprintf(fh, "angle %5.3f deg\n", rad2deg(gamma));
		fprintf(fh, "scale 10\n");
	}

	for ( h=-INDMAX; h<INDMAX; h++ ) {
	for ( k=-INDMAX; k<INDMAX; k++ ) {
	for ( l=-INDMAX; l<INDMAX; l++ ) {

		int N;
		double F, s;

		if ( counts ) {
			N = lookup_count(counts, h, k, l);
			if ( N == 0 ) continue;
		} else {
			N = 1;
		}

		F = lookup_intensity(ref, h, k, l) / N;
		if ( zone_axis && (l != 0) ) continue;

		s = resolution(cell, h, k, l);

		/* h, k, l, I, sigma(I), s */
		fprintf(fh, "%3i %3i %3i %f %f %f\n", h, k, l, F, 0.0, s/1.0e9);

	}
	}
	}
	fclose(fh);
}


double *read_reflections(const char *filename)
{
	double *ref;
	FILE *fh;
	char *rval;

	fh = fopen(filename, "r");
	if ( fh == NULL ) {
		ERROR("Failed to open input file\n");
		return NULL;
	}

	ref = new_list_intensity();

	do {

		char line[1024];
		signed int h, k, l, intensity;
		int r;

		rval = fgets(line, 1023, fh);
		r = sscanf(line, "%i %i %i %i", &h, &k, &l, &intensity);
		if ( r != 4 ) continue;

		set_intensity(ref, h, k, l, intensity);

	} while ( rval != NULL );

	fclose(fh);

	return ref;
}


double *ideal_intensities(double complex *sfac)
{
	double *ref;
	signed int h, k, l;

	ref = new_list_intensity();

	/* Generate ideal reflections from complex structure factors */
	for ( h=-INDMAX; h<=INDMAX; h++ ) {
	for ( k=-INDMAX; k<=INDMAX; k++ ) {
	for ( l=-INDMAX; l<=INDMAX; l++ ) {
		double complex F = lookup_sfac(sfac, h, k, l);
		double intensity = pow(cabs(F), 2.0);
		set_intensity(ref, h, k, l, intensity);
	}
	}
	}

	return ref;
}