Skip to content
Snippets Groups Projects
Commit 54c10151 authored by Laurent Mercadier's avatar Laurent Mercadier
Browse files

Re-add option to integrate over or take extremum of peak

parent 1bd27bbe
No related branches found
No related tags found
1 merge request!73Improved autoFindFastAdcPeaks()
...@@ -814,7 +814,8 @@ def matchXgmTimPulseId(data, use_apd=True, intstart=None, intstop=None, ...@@ -814,7 +814,8 @@ def matchXgmTimPulseId(data, use_apd=True, intstart=None, intstop=None,
# Fast ADC # Fast ADC
def fastAdcPeaks(data, channel, intstart, intstop, bkgstart, bkgstop, period=None, npulses=None): def fastAdcPeaks(data, channel, intstart, intstop, bkgstart, bkgstop,
period=None, npulses=None, usePeakValue=False, peakType='pos'):
''' Computes peak integration from raw FastADC traces. ''' Computes peak integration from raw FastADC traces.
Inputs: Inputs:
...@@ -831,6 +832,8 @@ def fastAdcPeaks(data, channel, intstart, intstop, bkgstart, bkgstop, period=Non ...@@ -831,6 +832,8 @@ def fastAdcPeaks(data, channel, intstart, intstop, bkgstart, bkgstop, period=Non
two bunches @ 4.5 MHz. two bunches @ 4.5 MHz.
npulses: number of pulses. If None, takes the maximum number of npulses: number of pulses. If None, takes the maximum number of
pulses according to the bunch patter (field 'npulses_sase3') pulses according to the bunch patter (field 'npulses_sase3')
usePeakValue: bool, if True takes the peak value of the signal,
otherwise integrates over integration region.
Output: Output:
results: DataArray with dims trainId x max(sase3 pulses) results: DataArray with dims trainId x max(sase3 pulses)
...@@ -859,11 +862,18 @@ def fastAdcPeaks(data, channel, intstart, intstop, bkgstart, bkgstop, period=Non ...@@ -859,11 +862,18 @@ def fastAdcPeaks(data, channel, intstart, intstop, bkgstart, bkgstop, period=Non
bkga = bkgstart + period*i bkga = bkgstart + period*i
bkgb = bkgstop + period*i bkgb = bkgstop + period*i
bg = np.outer(np.median(data[keyraw][:,bkga:bkgb], axis=1), np.ones(b-a)) bg = np.outer(np.median(data[keyraw][:,bkga:bkgb], axis=1), np.ones(b-a))
integ = np.trapz(data[keyraw][:,a:b] - bg, axis=1) if usePeakValue:
results[:,i] = integ if peakType=='pos':
val = np.max(data[keyraw][:,a:b] - bg, axis=1)
if peakType=='neg':
val = np.min(data[keyraw][:,a:b] - bg, axis=1)
else:
val = np.trapz(data[keyraw][:,a:b] - bg, axis=1)
results[:,i] = val
return results return results
def autoFindFastAdcPeaks(data, channel=5, window='small', display=False, plot=False): def autoFindFastAdcPeaks(data, channel=5, window='small', usePeakValue=False,
display=False, plot=False):
''' Automatically finds peaks in channel of Fast ADC trace, a minimum width of 4 ''' Automatically finds peaks in channel of Fast ADC trace, a minimum width of 4
samples. The find_peaks function and determination of the peak integration samples. The find_peaks function and determination of the peak integration
region and baseline subtraction is optimized for typical photodiode signals region and baseline subtraction is optimized for typical photodiode signals
...@@ -873,6 +883,8 @@ def autoFindFastAdcPeaks(data, channel=5, window='small', display=False, plot=Fa ...@@ -873,6 +883,8 @@ def autoFindFastAdcPeaks(data, channel=5, window='small', display=False, plot=Fa
key: data key of the array of traces key: data key of the array of traces
window: 'small' or 'large': defines the width of the integration region window: 'small' or 'large': defines the width of the integration region
centered on the peak. centered on the peak.
usePeakValue: bool, if True takes the peak value of the signal,
otherwise integrates over integration region.
display: bool, displays info on the pulses found display: bool, displays info on the pulses found
plot: bool, plots regions of integration of the first pulse in the trace plot: bool, plots regions of integration of the first pulse in the trace
Output: Output:
...@@ -916,7 +928,8 @@ def autoFindFastAdcPeaks(data, channel=5, window='small', display=False, plot=Fa ...@@ -916,7 +928,8 @@ def autoFindFastAdcPeaks(data, channel=5, window='small', display=False, plot=Fa
print(f'Found {npulses} {posNeg} pulses, avg. width={w}, period={period} samples, ' + print(f'Found {npulses} {posNeg} pulses, avg. width={w}, period={period} samples, ' +
f'rep. rate={1e6/(9.230769*period):.3f} kHz') f'rep. rate={1e6/(9.230769*period):.3f} kHz')
fAdcPeaks = fastAdcPeaks(data, channel=channel, intstart=intstart, intstop=intstop, fAdcPeaks = fastAdcPeaks(data, channel=channel, intstart=intstart, intstop=intstop,
bkgstart=bkgstart, bkgstop=bkgstop, period=period, npulses=npulses) bkgstart=bkgstart, bkgstop=bkgstop, period=period, npulses=npulses,
usePeakValue=usePeakValue, peakType=posNeg[:3])
if plot: if plot:
plt.figure() plt.figure()
plt.plot(trace_plot, 'o-', ms=3) plt.plot(trace_plot, 'o-', ms=3)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment