Skip to content

Commit 15a8825

Browse files
committed
Fix WM sigma cut to 3^2=9.
1 parent 5d818ed commit 15a8825

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sbncode/WireMod/Utility/WireModUtility.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ void sys::WireModUtility::ModifyROI(std::vector<float> & roi_data,
672672
} else if (q_orig < 0.01) { // check that this is a sane limit
673673
if (verbose) std::cout << "WARNING: obtained q_orig < 0.01 ... setting scale to 1" << std::endl;
674674
scale_ratio = 1.0;
675-
} else if (sigma_distance > 3.) {
675+
} else if (sigma_distance > 9.) {
676676
if (verbose) std::cout << "WARNING: sigma_distance > 3.. setting scale to 1" << std::endl;
677677
scale_ratio = 1.0;
678678
} else {

0 commit comments

Comments
 (0)