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
Copy file name to clipboardExpand all lines: GPU/GPUTracking/Definitions/GPUSettingsList.h
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -114,6 +114,7 @@ AddOptionRTC(maxConsecTimeBinAboveThreshold, uint16_t, 200, "", 0, "Except pad f
114
114
AddOptionRTC(noisyPadSaturationThreshold, uint16_t, 700, "", 0, "Threshold where a timebin is considered saturated, disabling the noisy pad check for that pad")
AddOptionRTC(hipTailFilterThreshold, uint16_t, 150, "", 0, "Threshold that must be exceeded for a timebin to be counted towards Highly Ionising Particle tail")
117
+
AddOptionRTC(hipTailFilterAlpha, float, 0.25f, "", 0, "Smoothing factor for the exponential Highly Ionising Particle tail filter")
117
118
AddOptionRTC(occupancyMapTimeBins, uint16_t, 16, "", 0, "Number of timebins per histogram bin of occupancy map (0 = disable occupancy map)")
118
119
AddOptionRTC(occupancyMapTimeBinsAverage, uint16_t, 0, "", 0, "Number of timebins +/- to use for the averaging")
119
120
AddOptionRTC(trackFitCovLimit, uint16_t, 1000, "", 0, "Abort fit when y/z cov exceed the limit")
Copy file name to clipboardExpand all lines: GPU/GPUTracking/TPCClusterFinder/GPUTPCCFCheckPadBaseline.h
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,8 @@
18
18
///
19
19
/// Optionally detects Highly Ionising Particle (HIP) tails: when a saturated
20
20
/// ADC value (1023) is found, the tail region on the triggering pad and its
21
-
/// neighbors is zeroed in the charge map until charges drop below a
22
-
/// configurable threshold.
21
+
/// neighbors is zeroed in the charge map until an exponential charge filter
22
+
/// drops below a configurable threshold.
23
23
24
24
#ifndef O2_GPU_GPU_TPC_CF_CHECK_PAD_BASELINE_H
25
25
#defineO2_GPU_GPU_TPC_CF_CHECK_PAD_BASELINE_H
@@ -107,6 +107,7 @@ class GPUTPCCFCheckPadBaseline : public GPUKernelTemplate
107
107
int16_t HIPtb = -1;
108
108
int16_t aboveThresholdStart = -1; // first TB of current above-hipTailThreshold streak; used to extend the tail back over the rising edge before saturation
0 commit comments