Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
ToolBox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SCS
ToolBox
Commits
54c10151
Commit
54c10151
authored
5 years ago
by
Laurent Mercadier
Browse files
Options
Downloads
Patches
Plain Diff
Re-add option to integrate over or take extremum of peak
parent
1bd27bbe
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!73
Improved autoFindFastAdcPeaks()
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
xgm.py
+18
-5
18 additions, 5 deletions
xgm.py
with
18 additions
and
5 deletions
xgm.py
+
18
−
5
View file @
54c10151
...
@@ -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
)
:
.
3
f
}
kHz
'
)
f
'
rep. rate=
{
1e6
/
(
9.230769
*
period
)
:
.
3
f
}
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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment