Skip to content
Snippets Groups Projects
Commit ebd1c7c9 authored by Philipp Schmidt's avatar Philipp Schmidt
Browse files

Fix update_config to actually allow updating config of non-AGIPD detectors

parent 8a5086bd
No related branches found
No related tags found
1 merge request!801Fix update_config to work with non-AGIPD and add REMI
...@@ -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:02d}" for i in range(16)], 'choices': [f"AGIPD{i:02d}" 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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment