Skip to content
Snippets Groups Projects
Commit 5f237052 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

TMSS-320: use defaults

parent 0325f002
No related branches found
No related tags found
2 merge requests!308Resolve TMSS-495,!306Resolve TMSS-320
...@@ -185,8 +185,8 @@ def create_sip_representation_for_subtask(subtask: Subtask): ...@@ -185,8 +185,8 @@ def create_sip_representation_for_subtask(subtask: Subtask):
pipeline = siplib.AveragingPipeline( # <-- this is what we need for UC1 pipeline = siplib.AveragingPipeline( # <-- this is what we need for UC1
pipeline_map, pipeline_map,
numberofcorrelateddataproducts=get_number_of_dataproducts_of_type(subtask, Dataformat.Choices.MEASUREMENTSET.value), numberofcorrelateddataproducts=get_number_of_dataproducts_of_type(subtask, Dataformat.Choices.MEASUREMENTSET.value),
frequencyintegrationstep=subtask.specifications_doc['demixer']['frequency_steps'] if 'demix' in subtask.task_blueprint.specifications_doc else 0, frequencyintegrationstep=subtask.specifications_doc.get('demixer',{}).get('frequency_steps', 0),
timeintegrationstep=subtask.specifications_doc['demixer']['time_step'] if 'demix' in subtask.task_blueprint.specifications_doc else 0, timeintegrationstep=subtask.specifications_doc.get('demixer',{}).get('time_step', 0),
flagautocorrelations=subtask.task_blueprint.specifications_doc["flag"]["autocorrelations"], flagautocorrelations=subtask.task_blueprint.specifications_doc["flag"]["autocorrelations"],
demixing=True if 'demix' in subtask.task_blueprint.specifications_doc else False demixing=True if 'demix' in subtask.task_blueprint.specifications_doc else False
) )
......
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