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
Thomas Kluyver
ToolBox
Commits
1f092c28
Commit
1f092c28
authored
5 years ago
by
Laurent Mercadier
Browse files
Options
Downloads
Patches
Plain Diff
Adds function to automatically find ADC peaks
parent
438a5a4d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
xgm.py
+46
-0
46 additions, 0 deletions
xgm.py
with
46 additions
and
0 deletions
xgm.py
+
46
−
0
View file @
1f092c28
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
import
matplotlib.pyplot
as
plt
import
matplotlib.pyplot
as
plt
import
numpy
as
np
import
numpy
as
np
import
xarray
as
xr
import
xarray
as
xr
from
scipy.signal
import
find_peaks
# Machine
# Machine
def
pulsePatternInfo
(
data
,
plot
=
False
):
def
pulsePatternInfo
(
data
,
plot
=
False
):
...
@@ -967,6 +968,51 @@ def fastAdcPeaks(data, channel, intstart, intstop, bkgstart, bkgstop, period=Non
...
@@ -967,6 +968,51 @@ def fastAdcPeaks(data, channel, intstart, intstop, bkgstart, bkgstop, period=Non
results
[:,
i
]
=
integ
results
[:,
i
]
=
integ
return
results
return
results
def
autoFindFastAdcPeaks
(
data
,
channel
=
5
,
threshold
=
35000
,
display
=
False
,
plot
=
False
):
'''
Automatically finds positive peaks in channel of Fast ADC trace, assuming
a minimum absolute height of
'
threshold
'
counts and a minimum width of 4
samples. The find_peaks function and determination of the peak region and
baseline subtraction is optimized for typical photodiode signals of the
SCS instrument (ILH, FFT reflectometer, FFT diag stage).
Inputs:
data: xarray Dataset containing Fast ADC traces
key: data key of the array of traces
threshold: minimum height of the peaks
display: bool, displays info on the pulses found
plot: plots regions of integration of the first pulse in the trace
Output:
peaks: DataArray of the integrated peaks
'''
key
=
f
'
FastADC
{
channel
}
raw
'
if
key
not
in
data
:
raise
ValueError
(
f
'
{
key
}
not found in data set
'
)
trace
=
data
[
key
].
where
(
data
[
'
npulses_sase3
'
]
>
0
,
drop
=
True
).
isel
(
trainId
=
0
).
values
centers
,
peaks
=
find_peaks
(
trace
,
height
=
threshold
,
width
=
(
4
,
None
))
c
=
centers
[
0
]
w
=
np
.
average
(
peaks
[
'
widths
'
]).
astype
(
int
)
period
=
np
.
median
(
np
.
diff
(
centers
)).
astype
(
int
)
npulses
=
centers
.
shape
[
0
]
intstart
=
int
(
c
-
w
/
4
)
+
1
intstop
=
int
(
c
+
w
/
4
)
+
1
bkgstop
=
int
(
peaks
[
'
left_ips
'
][
0
])
-
5
bkgstart
=
bkgstop
-
10
if
display
:
print
(
f
'
Found
{
npulses
}
pulses, avg. width=
{
w
}
, period=
{
period
}
samples,
'
+
f
'
rep. rate=
{
1e6
/
(
9.230769
*
period
)
:
.
3
f
}
kHz
'
)
fAdcPeaks
=
fastAdcPeaks
(
data
,
channel
=
channel
,
intstart
=
intstart
,
intstop
=
intstop
,
bkgstart
=
bkgstart
,
bkgstop
=
bkgstop
,
period
=
period
,
npulses
=
npulses
)
if
plot
:
plt
.
figure
()
plt
.
plot
(
trace
,
'
o-
'
,
ms
=
3
)
for
i
in
range
(
npulses
):
plt
.
axvline
(
intstart
+
i
*
period
,
ls
=
'
--
'
,
color
=
'
g
'
)
plt
.
axvline
(
intstop
+
i
*
period
,
ls
=
'
--
'
,
color
=
'
r
'
)
plt
.
axvline
(
bkgstart
+
i
*
period
,
ls
=
'
--
'
,
color
=
'
lightgrey
'
)
plt
.
axvline
(
bkgstop
+
i
*
period
,
ls
=
'
--
'
,
color
=
'
grey
'
)
plt
.
title
(
f
'
Fast ADC
{
channel
}
trace
'
)
plt
.
xlim
(
bkgstart
-
10
,
intstop
+
50
)
return
fAdcPeaks
def
mergeFastAdcPeaks
(
data
,
channel
,
intstart
,
intstop
,
bkgstart
,
bkgstop
,
def
mergeFastAdcPeaks
(
data
,
channel
,
intstart
,
intstop
,
bkgstart
,
bkgstop
,
period
=
None
,
npulses
=
None
,
dim
=
'
lasPulseId
'
):
period
=
None
,
npulses
=
None
,
dim
=
'
lasPulseId
'
):
...
...
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