Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions sbndcode/Utilities/badchannels_sbnd.fcl
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ sbnd_data_badchannels_east_dead_femb: [
#Shorted channels
sbnd_data_badchannels_west_plane0_shorted: [ 7169 ]
sbnd_data_badchannels_west_plane1_shorted: [ 8378 ]
sbnd_data_badchannels_east_plane1_shorted: [ 3048 ]
sbnd_data_badchannels_east_plane2_shorted: [ 4405 ]

#No response from channels
sbnd_data_badchannels_no_response: [ 546, 607, 2781, 7166, 7167, 8574, 8395, 11147 ]
Expand Down
2 changes: 2 additions & 0 deletions sbndcode/Utilities/channelstatus_sbnd.fcl
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ sbnd_channelstatus: {
@sequence::sbnd_data_badchannels_east_dead_femb,
@sequence::sbnd_data_badchannels_west_plane0_shorted,
@sequence::sbnd_data_badchannels_west_plane1_shorted,
@sequence::sbnd_data_badchannels_east_plane1_shorted,
@sequence::sbnd_data_badchannels_east_plane2_shorted,
@sequence::sbnd_data_badchannels_no_response,
@sequence::sbnd_data_badchannels_east_plane2_missing_combs,
@sequence::sbnd_data_badchannels_west_plane2_missing_combs,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,15 @@ function(params, anode, field, n, rms_cuts=[])
// Dead channels: 3232:3263 (inclusive) (East V). 4160:4191 (East Y)
// Jumpered region: 4800:4805 (inclusive, East Y), 10438:10443 (inclusive, West Y)
// No response: 546, 607, 8574
// Shorted channels: 7169 (West U), 8378 (West V).
// Channels shorted since commissioning: 7169 (West U), 8378 (West V).
// On May 13, 2026, these became shorted: 3048 (East V), 4405 (East Y).
// Unresponsive channels: 546, 607, 2781, 7167, 8574, 8395, 11147
// There are four physically missing wires ( = bad channels) due to combs, in the center of each 1/2 APA.
// They are 4374 and 5231 (East Y), 10012 and 10869 (West Y).
// So in total, there are 76 bad channels + 12 from jumpered region + 4 missing
//
//bad: [],
bad: [546, 607, 2781] + std.range(3232, 3263) + std.range(4160, 4191) + [4374, 4800, 4801, 4802, 4803, 4804, 4805, 5060, 5231, 5636, 5637, 7167, 7169, 8378, 8395, 8574, 10012, 10869, 10438, 10439, 10440, 10441, 10442, 10443, 11147],
bad: [546, 607, 2781, 3048] + std.range(3232, 3263) + std.range(4160, 4191) + [4374, 4405, 4800, 4801, 4802, 4803, 4804, 4805, 5060, 5231, 5636, 5637, 7167, 7169, 8378, 8395, 8574, 10012, 10869, 10438, 10439, 10440, 10441, 10442, 10443, 11147],

// Overide defaults for specific channels. If an info is
// mentioned for a particular channel in multiple objects in this
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,15 @@ function(params, anode, field, n, rms_cuts=[])
// Dead channels: 3232:3263 (inclusive) (East V). 4160:4191 (East Y)
// Jumpered region: 4800:4805 (inclusive, East Y), 10438:10443 (inclusive, West Y)
// No response: 546, 607, 8574
// Shorted channels: 7169 (West U), 8378 (West V).
// Channels shorted since commissioning: 7169 (West U), 8378 (West V).
// On May 13, 2026, these became shorted: 3048 (East V), 4405 (East Y).
// Unresponsive channels: 546, 607, 2781, 7167, 8574, 8395, 11147
// There are four physically missing wires ( = bad channels) due to combs, in the center of each 1/2 APA.
// They are 4374 and 5231 (East Y), 10012 and 10869 (West Y).
// So in total, there are 76 bad channels + 12 from jumpered region + 4 missing
//
//bad: [],
bad: [546, 607, 2781] + std.range(3232, 3263) + std.range(4160, 4191) + [4374, 4800, 4801, 4802, 4803, 4804, 4805, 5060, 5231, 5636, 5637, 7167, 7169, 8378, 8395, 8574, 10012, 10869, 10438, 10439, 10440, 10441, 10442, 10443, 11147],
bad: [546, 607, 2781, 3048] + std.range(3232, 3263) + std.range(4160, 4191) + [4374, 4405, 4800, 4801, 4802, 4803, 4804, 4805, 5060, 5231, 5636, 5637, 7167, 7169, 8378, 8395, 8574, 10012, 10869, 10438, 10439, 10440, 10441, 10442, 10443, 11147],

// Overide defaults for specific channels. If an info is
// mentioned for a particular channel in multiple objects in this
Expand Down