aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom White <weiss@jade.(none)>2008-09-23 17:52:40 +0100
committerThomas White <taw27@cam.ac.uk>2008-10-02 17:54:49 +0100
commit6442946314d25c55958039471fb0a676de32fbe6 (patch)
tree6b9126896fc55c1394d1a0b5b9c3241a0624c1c9
parent0feee3be643774a473f667b69b9449fecbb2c553 (diff)
Restore proper testing data
-rw-r--r--src/refinetest3d.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/refinetest3d.c b/src/refinetest3d.c
index 399f287..cbe8be2 100644
--- a/src/refinetest3d.c
+++ b/src/refinetest3d.c
@@ -158,9 +158,9 @@ int main(int argc, char *argv[]) {
/* The "model" cell to be refined */
ctx->cell = malloc(sizeof(Basis));
- ctx->cell->a.x = 5.0e9; ctx->cell->a.y = 0.1e9; ctx->cell->a.z = 0.0e9;
- ctx->cell->b.x = 0.0e9; ctx->cell->b.y = 5.0e9; ctx->cell->b.z = 0.0e9;
- ctx->cell->c.x = 0.0e9; ctx->cell->c.y = 0.0e9; ctx->cell->c.z = 5.0e9;
+ ctx->cell->a.x = 5.0e9; ctx->cell->a.y = 0.1e9; ctx->cell->a.z = 0.1e9;
+ ctx->cell->b.x = 0.1e9; ctx->cell->b.y = 5.0e9; ctx->cell->b.z = 0.1e9;
+ ctx->cell->c.x = 0.1e9; ctx->cell->c.y = 0.1e9; ctx->cell->c.z = 5.0e9;
ctx->cell_lattice = reflection_list_from_cell(ctx->cell);
ctx->images->images[0].rflist = reproject_get_reflections(&ctx->images->images[0], ctx->cell_lattice);
reproject_partner_features(ctx->images->images[0].rflist, &ctx->images->images[0]);