diff options
author | Thomas White <taw@physics.org> | 2023-04-27 15:57:57 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2023-07-28 13:22:04 +0200 |
commit | 6b4951083d2ad9dbeff02078e2283ee045507c79 (patch) | |
tree | 410e23cd73acb44be5da521d41b6b93d213313ec /libcrystfel | |
parent | 6796ac2e54e45b0d04d7ca2baccf36325b992b51 (diff) |
Set sensible sigma values for Mille
Diffstat (limited to 'libcrystfel')
-rw-r--r-- | libcrystfel/src/predict-refine.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcrystfel/src/predict-refine.c b/libcrystfel/src/predict-refine.c index caf3cedf..3b52d0c1 100644 --- a/libcrystfel/src/predict-refine.c +++ b/libcrystfel/src/predict-refine.c @@ -599,7 +599,7 @@ static void write_mille(Mille *mille, int n, UnitCell *cell, 9, local_gradients, 2, global_gradients, labels, r_dev(&rps[i]), - 1e-18); + 1e10); } /* Spot x-position terms */ @@ -622,7 +622,7 @@ static void write_mille(Mille *mille, int n, UnitCell *cell, 9, local_gradients, 2, global_gradients, labels, x_dev(&rps[i], image->detgeom, dx, dy), - 10.0); + 0.65*rps[i].panel->pixel_pitch); } /* Spot y-position terms */ @@ -645,7 +645,7 @@ static void write_mille(Mille *mille, int n, UnitCell *cell, 9, local_gradients, 2, global_gradients, labels, y_dev(&rps[i], image->detgeom, dx, dy), - 10.0); + 0.65*rps[i].panel->pixel_pitch); } #endif /* HAVE_MILLEPEDE */ } |