diff options
author | Thomas White <taw@physics.org> | 2010-09-21 15:39:53 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:26:59 +0100 |
commit | e44890d0a13815f7fd61d777637c5bd09cb09dbc (patch) | |
tree | 1a3e49a77bf915e4fc2a770d9455ab0c629fbd19 /src/pattern_sim.c | |
parent | 9e5e6edd61073eb6d19e31dadb325aa88e692155 (diff) |
Add the possibility to use a circular (instead of 'crystallographic') integration domain
Diffstat (limited to 'src/pattern_sim.c')
-rw-r--r-- | src/pattern_sim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pattern_sim.c b/src/pattern_sim.c index 4d4ba10f..0d414653 100644 --- a/src/pattern_sim.c +++ b/src/pattern_sim.c @@ -417,8 +417,8 @@ int main(int argc, char *argv[]) record_image(&image, !config_nonoise); if ( config_nearbragg ) { - find_projected_peaks(&image, cell); - output_intensities(&image, cell, NULL, 0, 1, 0); + find_projected_peaks(&image, cell, 0, 0.1); + output_intensities(&image, cell, NULL, 0, 1, 0, 0, 0.1); } if ( powder_fn != NULL ) { |