diff options
author | Thomas White <taw@physics.org> | 2011-06-16 17:38:45 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:29 +0100 |
commit | c5b6900196575de9bd649407351b041869ddfed4 (patch) | |
tree | d6d68ea538b1516bdad7b3c699098948f80ba5a6 /src/partial_sim.c | |
parent | 65305f9f5064f0537f365208b6b750e4e6d7a9cf (diff) |
WIP on scaling
Diffstat (limited to 'src/partial_sim.c')
-rw-r--r-- | src/partial_sim.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/partial_sim.c b/src/partial_sim.c index d9d7fc52..d089640b 100644 --- a/src/partial_sim.c +++ b/src/partial_sim.c @@ -61,6 +61,7 @@ static void calculate_partials(RefList *partial, double osf, { Reflection *refl; RefListIterator *iter; + int first = 1; for ( refl = first_refl(partial, &iter); refl != NULL; @@ -74,6 +75,7 @@ static void calculate_partials(RefList *partial, double osf, get_indices(refl, &h, &k, &l); get_asymm(h, k, l, &h, &k, &l, sym); p = get_partiality(refl); + p = 1.0; /* FIXME!!! */ rfull = find_refl(full, h, k, l); if ( rfull == NULL ) { @@ -83,6 +85,9 @@ static void calculate_partials(RefList *partial, double osf, set_int(refl, Ip); } + if ( !first ) set_redundancy(refl, 0); + first = 0; + } } @@ -275,6 +280,7 @@ int main(int argc, char *argv[]) } else { osf = 2.0; } + STATUS("Image %i scale factor %f\n", i, osf); /* Set up a random orientation */ orientation = random_quaternion(); |