diff options
author | Thomas White <taw@physics.org> | 2019-05-08 14:37:27 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-05-14 10:02:50 +0200 |
commit | 636eb6116961296791bae35c40fd9438aa946827 (patch) | |
tree | b195c2c1e897d7d4c778a60bd81bd231819f70a7 /src | |
parent | 59770f9bffbd47de5b518244a6dfcfbdfc8dad09 (diff) |
Remove image.num_peaks and num_saturated_peaks
These values were inconsistently set by different parts of the code,
e.g. different peak search methods. num_saturated_peaks was even set
during final integration. Now, the peak count is taken from the
ImageFeatureList, so it's authoritative.
Diffstat (limited to 'src')
-rw-r--r-- | src/partial_sim.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/partial_sim.c b/src/partial_sim.c index 012b0a59..92f9703c 100644 --- a/src/partial_sim.c +++ b/src/partial_sim.c @@ -841,8 +841,6 @@ int main(int argc, char *argv[]) image.crystals = NULL; image.n_crystals = 0; image.indexed_by = INDEXING_SIMULATION; - image.num_peaks = 0; - image.num_saturated_peaks = 0; image.spectrum_size = 0; image.spectrum0 = NULL; image.serial = 0; |