Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pycalibration
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Contributor 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
calibration
pycalibration
Commits
6d1aa45d
Commit
6d1aa45d
authored
5 years ago
by
Mikhail Karnevskiy
Browse files
Options
Downloads
Patches
Plain Diff
Add plotting constants of FCCD
parent
b84511dc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!132
Feat: Add plotting constants of FCCD
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cal_tools/cal_tools/ana_tools.py
+14
-0
14 additions, 0 deletions
cal_tools/cal_tools/ana_tools.py
notebooks/FastCCD/PlotFromCalDB_FastCCD_NBC.ipynb
+531
-0
531 additions, 0 deletions
notebooks/FastCCD/PlotFromCalDB_FastCCD_NBC.ipynb
xfel_calibrate/notebooks.py
+6
-0
6 additions, 0 deletions
xfel_calibrate/notebooks.py
with
551 additions
and
0 deletions
cal_tools/cal_tools/ana_tools.py
+
14
−
0
View file @
6d1aa45d
...
...
@@ -352,6 +352,20 @@ class HMType(Enum):
INSET_AXIS
=
2
def
get_range
(
data
,
scale
):
"""
Get range, which includes most of the data points.
Range is calculated in units of median absolute deviations
:param data: numpy.array of data points
:param scale: range in units of median absolute deviations
:return:
"""
med
=
np
.
nanmedian
(
data
)
mad
=
np
.
nanmedian
(
np
.
abs
(
data
.
flatten
()
-
med
))
return
med
-
scale
*
mad
,
med
+
scale
*
mad
def
hm_combine
(
data
,
fname
=
None
,
htype
=
None
,
**
kwargs
):
"""
Plot heatmap for calibration report
...
...
This diff is collapsed.
Click to expand it.
notebooks/FastCCD/PlotFromCalDB_FastCCD_NBC.ipynb
0 → 100644
+
531
−
0
View file @
6d1aa45d
This diff is collapsed.
Click to expand it.
xfel_calibrate/notebooks.py
+
6
−
0
View file @
6d1aa45d
...
...
@@ -129,6 +129,12 @@ notebooks = {
"
use function
"
:
"
balance_sequences
"
,
"
cluster cores
"
:
4
},
},
"
STATS_FROM_DB
"
:
{
"
notebook
"
:
"
notebooks/FastCCD/PlotFromCalDB_FastCCD_NBC.ipynb
"
,
"
concurrency
"
:
{
"
parameter
"
:
None
,
"
default concurrency
"
:
None
,
"
cluster cores
"
:
1
},
},
},
"
JUNGFRAU
"
:
{
"
DARK
"
:
{
...
...
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