You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AddOptionRTC(cfInnerThreshold, unsignedchar, 0, "", 0, "Cluster Finder extends cluster if inner charge above this threshold")
57
57
AddOptionRTC(cfMinSplitNum, unsignedchar, 1, "", 0, "Minimum number of split charges in a cluster for the cluster to be marked as split")
58
58
AddOptionRTC(cfNoiseSuppressionEpsilon, unsignedchar, 10, "", 0, "Cluster Finder: Difference between peak and charge for the charge to count as a minima during noise suppression")
59
+
AddOptionRTC(cfNoiseSuppressionEpsilonRelative, unsignedchar, 76, "", 0, "Cluster Finder: Difference between peak and charge for the charge to count as a minima during noise suppression, relative as fraction of 255")
59
60
AddOptionRTC(nWays, char, 3, "", 0, "Do N fit passes in final fit of merger")
AddOptionRTC(trackFitRejectMode, char, 5, "", 0, "0: no limit on rejection or missed hits, >0: break after n rejected hits, <0: reject at max -n hits")
ulong isMinima = (q - r > epsilon) && (float)CAMath::Abs(q - r) / (float)CAMath::Max(q, r) > epsilonRelative; // TODO: Can we assume q > r and get rid of Max/Abs?
0 commit comments