diff options
author | Thomas White <taw@bitwiz.org.uk> | 2013-02-06 20:39:01 +0100 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2013-02-06 20:39:01 +0100 |
commit | d9fc791021317d6823078a3f3779a79aa3bc84b4 (patch) | |
tree | 44da17fe9ae28a63541c7c43b0eec1d94287047d /src/partial_sim.c | |
parent | a1ee07e0887bd23491218301ad440a4ad2efb24f (diff) |
Fix process_hkl
Diffstat (limited to 'src/partial_sim.c')
-rw-r--r-- | src/partial_sim.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/partial_sim.c b/src/partial_sim.c index 502e7028..e48c51fa 100644 --- a/src/partial_sim.c +++ b/src/partial_sim.c @@ -287,6 +287,8 @@ static void run_job(void *vwargs, int cookie) /* Give a slightly incorrect cell in the stream */ mess_up_cell(cr, qargs->cnoise); + + image_add_crystal(&wargs->image, cr); } @@ -523,8 +525,11 @@ int main(int argc, char *argv[]) image.lambda = ph_en_to_lambda(eV_to_J(beam->photon_energy)); image.div = beam->divergence; image.bw = beam->bandwidth; + image.beam = beam; image.filename = malloc(256); image.copyme = NULL; + image.crystals = NULL; + image.n_crystals = 0; if ( random_intensities ) { full = reflist_new(); |