Skip to content

Commit 89a33fb

Browse files
committed
correct grouping (was missing the last group by accident)
1 parent 8cf658d commit 89a33fb

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

sbndcode/WireCell/cfg/pgrapher/experiment/sbnd/chndb-base.jsonnet

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ function(params, anode, field, n, rms_cuts=[])
2020
// For MicroBooNE, channel groups is a 2D list. Each element is
2121
// one group of channels which should be considered together for
2222
// coherent noise filtering.
23-
groups: [std.range( 0 + n * 5638 + g*32, 0 + n * 5638 + (g+1)*32 - 1) for g in std.range(0,149)] +
24-
[std.range(4806 + n * 5638 + g*32, 4806 + n * 5638 + (g+1)*32 - 1) for g in std.range(0,25)] ,
23+
// 5638 is the number of channels in a single APA, (1984*2 + 1670), including the 6 channel gap.
24+
// 4806 is the number of channels for both induction + half of real collection wires + 6 channel gap
25+
groups: [std.range( 0 + n * 5638 + g*32, 0 + n * 5638 + (g+1)*32 - 1) for g in std.range(0,150)] +
26+
[std.range(4806 + n * 5638 + g*32, 4806 + n * 5638 + (g+1)*32 - 1) for g in std.range(0,26)] ,
2527

2628

2729
// Externally determined "bad" channels.
@@ -55,9 +57,11 @@ function(params, anode, field, n, rms_cuts=[])
5557
response_offset: 0.0, // ticks?
5658
pad_window_front: 10, // ticks?
5759
pad_window_back: 10, // ticks?
58-
decon_limit: 0.02,
60+
decon_limit: 0.02, // (SignalProtection, same as upper_decon_limit (default 0.02))
5961
decon_limit1: 0.09,
60-
adc_limit: 10,
62+
adc_limit: 5, // (SignalProtection, same as upper_adc_limit (default 15))
63+
// min_adc_limit = 50
64+
// protection_factor = 5.0 (SignalProtection)
6165
roi_min_max_ratio: 0.8, // default 0.8
6266
min_rms_cut: 1.0, // units???
6367
max_rms_cut: 30.0, // units???

0 commit comments

Comments
 (0)