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
a5388fee
Commit
a5388fee
authored
2 years ago
by
Johannes Niskanen
Browse files
Options
Downloads
Patches
Plain Diff
Some nasty bugs fixed.
parent
36ac54ed
No related branches found
Branches containing commit
No related tags found
2 merge requests
!198
Alignment of spectra
,
!188
P2866 updates
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/toolbox_scs/detectors/hrixs.py
+11
-6
11 additions, 6 deletions
src/toolbox_scs/detectors/hrixs.py
with
11 additions
and
6 deletions
src/toolbox_scs/detectors/hrixs.py
+
11
−
6
View file @
a5388fee
...
...
@@ -536,21 +536,23 @@ class hRIXS:
# if the leftover tail is more than a half of full length, add it too
if
data
.
spectrum
.
shape
[
0
]
%
ImageGrouping
>
ImageGrouping
/
2
:
spectra
.
append
(
np
.
sum
(
data
.
spectrum
[
Ngroups
*
ImageGrouping
::].
to_numpy
(),
axis
=
0
))
xhits
.
append
(
np
.
hstack
(
xhits
[
Ngroups
*
ImageGrouping
::].
to_numpy
()))
xhits
.
append
(
np
.
hstack
(
data
.
xhits
[
Ngroups
*
ImageGrouping
::].
to_numpy
()))
elif
ImageGrouping
.
lower
()
==
'
run
'
or
ImageGrouping
.
lower
()
==
'
runs
'
:
#********************************************
# Group data by runs
#********************************************
energy
=
data_list
[
0
].
energy
.
to_numpy
()
spectra
=
[]
xhits
=
[]
for
rundata
in
data_list
:
runspectrum
=
np
.
zeros
(
energy
.
shape
)
runxhits
=
[]
for
spec
,
hits
in
zip
(
rundata
.
spectrum
,
rundata
.
xhits
):
runspectrum
+=
spec
.
to_numpy
()
runxhits
.
append
(
hits
.
to_numpy
())
for
spec
,
hits
in
zip
(
rundata
.
spectrum
.
to_numpy
(),
rundata
.
xhits
.
to_numpy
()):
runspectrum
+=
spec
runxhits
.
append
(
hits
)
runxhits
=
np
.
hstack
(
runxhits
)
spectra
.
append
(
runspectrum
)
xhits
.
append
(
np
.
hstack
(
runxhits
)
)
xhits
.
append
(
runxhits
)
else
:
raise
Exception
(
'
align_readouts() needs a reasonable grouping argument
'
)
#********************************************
...
...
@@ -597,6 +599,9 @@ class hRIXS:
maxpos
=
np
.
argmax
(
corr
)
shift
=
maxpos
-
corr_len
peak_posis
.
append
(
x
[
maxipos0
+
shift
])
#********************************************
# Alignment based on Gaussian fitting
#********************************************
elif
method
.
lower
()
==
'
gauss_fit
'
:
if
fit_tol
==
None
:
raise
Exception
(
'
Gauss fit requires a tolerance value.
'
)
...
...
@@ -673,7 +678,7 @@ class hRIXS:
ret
.
append
(
np
.
interp
(
grid
,
x
,
y
))
spectrum_aligned
=
np
.
array
(
ret
)
elif
method
.
lower
()
==
'
gauss_fit
'
:
e0
=
peak_posis
[
0
]
e0
=
int
(
peak_posis
[
0
]
)
energy_aligned
=
np
.
linspace
(
self
.
Y_RANGE
.
start
,
self
.
Y_RANGE
.
stop
,
self
.
BINS
)
-
e0
ret
=
[]
for
position
,
hits
in
zip
(
peak_posis
,
xhits
):
...
...
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