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
ebd1c7c9
Commit
ebd1c7c9
authored
2 years ago
by
Philipp Schmidt
Browse files
Options
Downloads
Patches
Plain Diff
Fix update_config to actually allow updating config of non-AGIPD detectors
parent
8a5086bd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!801
Fix update_config to work with non-AGIPD and add REMI
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
webservice/update_config.py
+14
-6
14 additions, 6 deletions
webservice/update_config.py
with
14 additions
and
6 deletions
webservice/update_config.py
+
14
−
6
View file @
ebd1c7c9
...
@@ -40,7 +40,7 @@ AGIPD_CONFIGURATIONS = {
...
@@ -40,7 +40,7 @@ AGIPD_CONFIGURATIONS = {
}
}
}
}
DATA_MAPPING
=
{
AGIPD_
DATA_MAPPING
=
{
"
karabo-da
"
:
{
"
karabo-da
"
:
{
'
type
'
:
list
,
'
type
'
:
list
,
'
choices
'
:
[
f
"
AGIPD
{
i
:
02
d
}
"
for
i
in
range
(
16
)],
'
choices
'
:
[
f
"
AGIPD
{
i
:
02
d
}
"
for
i
in
range
(
16
)],
...
@@ -48,9 +48,17 @@ DATA_MAPPING = {
...
@@ -48,9 +48,17 @@ DATA_MAPPING = {
}
}
}
}
REMI_DATA_MAPPING
=
{
"
karabo-da
"
:
{
'
type
'
:
list
,
'
choices
'
:
[
'
DIGI02
'
],
'
msg
'
:
"
Choices: [DIGI02].
"
}
}
AVAILABLE_DETECTORS
=
{
AVAILABLE_DETECTORS
=
{
"
SPB_DET_AGIPD1M-1
"
:
[
AGIPD_CONFIGURATIONS
,
DATA_MAPPING
],
"
SPB_DET_AGIPD1M-1
"
:
[
AGIPD_CONFIGURATIONS
,
AGIPD_
DATA_MAPPING
],
"
MID_DET_AGIPD1M-1
"
:
[
AGIPD_CONFIGURATIONS
,
DATA_MAPPING
],
"
MID_DET_AGIPD1M-1
"
:
[
AGIPD_CONFIGURATIONS
,
AGIPD_
DATA_MAPPING
],
}
}
...
@@ -67,7 +75,7 @@ required_args = parser.add_argument_group('required arguments')
...
@@ -67,7 +75,7 @@ required_args = parser.add_argument_group('required arguments')
required_args
.
add_argument
(
required_args
.
add_argument
(
'
--karabo-id
'
,
type
=
str
,
'
--karabo-id
'
,
type
=
str
,
choices
=
[
'
SPB_DET_AGIPD1M-1
'
,
'
MID_DET_AGIPD1M-1
'
]
)
choices
=
list
(
AVAILABLE_DETECTORS
.
keys
())
)
required_args
.
add_argument
(
required_args
.
add_argument
(
'
--proposal
'
,
type
=
str
,
'
--proposal
'
,
type
=
str
,
help
=
'
The proposal number, without leading p, but with leading zeros.
'
)
help
=
'
The proposal number, without leading p, but with leading zeros.
'
)
...
@@ -105,7 +113,7 @@ def _add_available_configs_to_arg_parser(karabo_id: str, action: str):
...
@@ -105,7 +113,7 @@ def _add_available_configs_to_arg_parser(karabo_id: str, action: str):
along with the arguments.
along with the arguments.
"""
"""
available_conf
=
[{},
DATA_MAPPING
]
available_conf
=
[{},
AVAILABLE_DETECTORS
[
karabo_id
][
1
]
]
# adding "no" bools to available configurations
# adding "no" bools to available configurations
# Loop over action configurations in available_detectors dictionary.
# Loop over action configurations in available_detectors dictionary.
...
@@ -175,7 +183,7 @@ def _create_new_config_from_args_input(
...
@@ -175,7 +183,7 @@ def _create_new_config_from_args_input(
continue
continue
# checking if data-mapping was updated.
# checking if data-mapping was updated.
if
key
in
DATA_MAPPING
.
keys
():
if
key
in
AVAILABLE_DETECTORS
[
karabo_id
][
1
]
.
keys
():
if
'
data-mapping
'
not
in
new_conf
.
keys
():
if
'
data-mapping
'
not
in
new_conf
.
keys
():
new_conf
[
'
data-mapping
'
]
=
{
karabo_id
:
{
key
:
{}}}
new_conf
[
'
data-mapping
'
]
=
{
karabo_id
:
{
key
:
{}}}
new_conf
[
'
data-mapping
'
][
karabo_id
][
key
]
=
value
new_conf
[
'
data-mapping
'
][
karabo_id
][
key
]
=
value
...
...
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