Skip to content

Commit c66d32d

Browse files
committed
docs
1 parent b08aaf4 commit c66d32d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/bin/psd.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -436,22 +436,22 @@ impl App {
436436
ui.separator();
437437
ui.add(
438438
Slider::new(&mut self.acq.avg, 1..=1_000_000_000)
439-
.text("Averages")
439+
.text("Top Averages")
440440
.logarithmic(true),
441441
)
442-
.on_hover_text("Target averaging count at the top stage");
442+
.on_hover_text("Top stage averaging factor.\nLower stages will average less.\nReaching this limit will lead to same number\nof effective samples processed\nby each stage.");
443443
ui.add(
444444
Slider::new(&mut self.acq.avg_max, 1..=1_000_000.min(self.acq.avg))
445-
.text("Averaging limit")
445+
.text("Max Averages")
446446
.logarithmic(true),
447447
)
448-
.on_hover_text("Averaging limit:\nClip averaging at each stage to this\nThe averaging starts as boxcar,\nthen continues exponential");
448+
.on_hover_text("Limit averaging at each stage.\nThe averaging starts as boxcar\nthen continues exponential.\nReaching this limit leads to the same SNR for all stages.");
449449
ui.add(
450450
Slider::new(&mut self.acq.avg_min, 0..=self.acq.avg_max)
451451
.text("Min averages")
452452
.logarithmic(true),
453453
)
454-
.on_hover_text("Minimum averaging count to\nshow data from a stage");
454+
.on_hover_text("Minimum averaging count to\nshow data from a stage.\nStages with fewer averages will not be shown.");
455455
ui.separator();
456456
ui.horizontal(|ui| {
457457
ui.checkbox(&mut self.acq.keep_overlap, "Keep overlap")

0 commit comments

Comments
 (0)