diff options
author | Thomas White <taw@physics.org> | 2011-07-05 11:57:55 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:31 +0100 |
commit | 75a494320e111fd33205c53abf228114ff073f06 (patch) | |
tree | 5b121c4b70d4c74ef08a9cddbc3a29b29218812a /src | |
parent | e26edd4e367c5425ee368d68e3c40e598e1e510f (diff) |
Tweak PR parameters
Diffstat (limited to 'src')
-rw-r--r-- | src/partial_sim.c | 4 | ||||
-rw-r--r-- | src/partialator.c | 2 | ||||
-rw-r--r-- | src/post-refinement.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/partial_sim.c b/src/partial_sim.c index 15e46861..7d783f02 100644 --- a/src/partial_sim.c +++ b/src/partial_sim.c @@ -38,7 +38,7 @@ static void mess_up_cell(UnitCell *cell) double cx, cy, cz; /* Cell noise in percent */ - const double cnoise = 0.5; + const double cnoise = 0.2; //STATUS("Real:\n"); //cell_print(cell); @@ -267,7 +267,7 @@ 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.profile_radius = 0.0001e9; + image.profile_radius = 0.003e9; image.i0_available = 0; image.filename = malloc(256); diff --git a/src/partialator.c b/src/partialator.c index 43c4bda0..9e09b4c7 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -413,7 +413,7 @@ int main(int argc, char *argv[]) cur->width = det->max_fs; cur->height = det->max_ss; cur->osf = 1.0; - cur->profile_radius = 0.0001e9; + cur->profile_radius = 0.003e9; cur->pr_dud = 0; /* Muppet proofing */ diff --git a/src/post-refinement.c b/src/post-refinement.c index aeafcddc..631540f5 100644 --- a/src/post-refinement.c +++ b/src/post-refinement.c @@ -515,5 +515,5 @@ void pr_refine(struct image *image, const RefList *full, const char *sym) i++; - } while ( (max_shift > 0.01) && (i < MAX_CYCLES) ); + } while ( (max_shift > 50.0) && (i < MAX_CYCLES) ); } |