forked from brettviren/wire-cell-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The "measure" is found by applying the connected components algorithm to a special per-slice, per plane graph holding nodes representing blobs and channels. The nodes of this graph hold the vertex descriptor of the original cluster graph node. The bug was due to a channel being added to this special graph each time it was seen across the blobs. Thus, by construction, the connected components (ie, measures) always had exactly one blob. The fix was to only add any given channel exactly once. The following test is extended to check this bug: ``` $ bats img/test/test-wct-uboone-img.bats test-wct-uboone-img.bats ✓ create graph ✓ check log files ✓ inspect blobs ✓ dump blobs ✓ at least one multi-blob measure 5 tests, 0 failures ```
- Loading branch information
1 parent
7591e50
commit 1a1bb66
Showing
4 changed files
with
66 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters