Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • RD/LINC
  • rafferty/prefactor3-cwl
  • sweijen/LINC
3 results
Show changes
Commits on Source (12)
...@@ -244,7 +244,7 @@ inputs: ...@@ -244,7 +244,7 @@ inputs:
prefix: ddecal.sourcedb= prefix: ddecal.sourcedb=
separate: false separate: false
- id: usebeammodel - id: usebeammodel
default: true default: false
type: boolean? type: boolean?
inputBinding: inputBinding:
position: 0 position: 0
......
...@@ -26,12 +26,16 @@ inputs: ...@@ -26,12 +26,16 @@ inputs:
- id: smoothnessreffrequency - id: smoothnessreffrequency
type: float? type: float?
default: 0. default: 0.
- id: beammode
type: string
- id: nchan - id: nchan
type: int? type: int?
default: 0 default: 0
- id: model_column - id: model_column
type: string[]? type: string[]?
default: [] default: []
- id: uvlambdamin
type: float
- id: execute - id: execute
type: boolean? type: boolean?
default: true default: true
...@@ -79,7 +83,7 @@ steps: ...@@ -79,7 +83,7 @@ steps:
- id: msout_name - id: msout_name
default: '.' default: '.'
- id: uvlambdamin - id: uvlambdamin
default: 150. source: uvlambdamin
- id: mode - id: mode
source: gsmcal_step source: gsmcal_step
valueFrom: '$(self == "phase" ? "phaseonly" : self)' valueFrom: '$(self == "phase" ? "phaseonly" : self)'
...@@ -100,7 +104,7 @@ steps: ...@@ -100,7 +104,7 @@ steps:
- id: usechannelfreq - id: usechannelfreq
default: true default: true
- id: beammode - id: beammode
default: array_factor source: beammode
- id: smoothnessconstraint - id: smoothnessconstraint
source: smoothnessconstraint source: smoothnessconstraint
- id: smoothnessreffrequency - id: smoothnessreffrequency
......
...@@ -346,7 +346,7 @@ steps: ...@@ -346,7 +346,7 @@ steps:
source: source:
- merge_array_concat/output - merge_array_concat/output
- id: numbands - id: numbands
valueFrom: $(-1) default: -1
- id: DP3fill - id: DP3fill
default: true default: true
- id: stepname - id: stepname
...@@ -496,11 +496,15 @@ steps: ...@@ -496,11 +496,15 @@ steps:
- id: selfcal_strategy - id: selfcal_strategy
source: selfcal_strategy source: selfcal_strategy
- id: nchan - id: nchan
valueFrom: $(1) default: 1
- id: smoothnessconstraint - id: smoothnessconstraint
valueFrom: $(5000000) default: 5000000
- id: smoothnessreffrequency - id: smoothnessreffrequency
valueFrom: $(120000000) default: 120000000
- id: beammode
default: array_factor
- id: uvlambdamin
default: 200
out: out:
- id: msout - id: msout
- id: BLsmooth.log - id: BLsmooth.log
...@@ -556,7 +560,7 @@ steps: ...@@ -556,7 +560,7 @@ steps:
- id: solset - id: solset
default: sol000 default: sol000
- id: correction - id: correction
valueFrom: phase000 default: phase000
- id: execute - id: execute
source: selfcal source: selfcal
- id: selfcal_strategy - id: selfcal_strategy
...@@ -597,7 +601,7 @@ steps: ...@@ -597,7 +601,7 @@ steps:
- id: join-channels - id: join-channels
default: True default: True
- id: fit-spectral-pol - id: fit-spectral-pol
valueFrom: $(3) default: 3
- id: weighting - id: weighting
default: briggs -1.5 default: briggs -1.5
- id: minuv-l - id: minuv-l
...@@ -605,7 +609,7 @@ steps: ...@@ -605,7 +609,7 @@ steps:
- id: tempdir - id: tempdir
source: wsclean_tmpdir source: wsclean_tmpdir
- id: image_name - id: image_name
valueFrom: image_before_selfcal default: image_before_selfcal
- id: no_model_update - id: no_model_update
default: false default: false
# This can be turned on if we do a separate predict after, not sure if that would be faster. # This can be turned on if we do a separate predict after, not sure if that would be faster.
...@@ -644,7 +648,7 @@ steps: ...@@ -644,7 +648,7 @@ steps:
# - id: skymodel # - id: skymodel
# source: image_target/sourcelist # source: image_target/sourcelist
- id: do_smooth - id: do_smooth
valueFrom: $(false) default: false
- id: propagatesolutions - id: propagatesolutions
source: propagatesolutions source: propagatesolutions
- id: gsmcal_step - id: gsmcal_step
...@@ -654,13 +658,17 @@ steps: ...@@ -654,13 +658,17 @@ steps:
- id: selfcal_strategy - id: selfcal_strategy
source: selfcal_strategy source: selfcal_strategy
- id: model_column - id: model_column
valueFrom: $(["MODEL_DATA"]) default: ["MODEL_DATA"]
- id: nchan - id: nchan
valueFrom: $(1) default: 1
- id: smoothnessconstraint - id: smoothnessconstraint
valueFrom: $(5000000) default: 5000000
- id: smoothnessreffrequency - id: smoothnessreffrequency
valueFrom: $(120000000) default: 120000000
- id: beammode
default: array_factor
- id: uvlambdamin
default: 200
out: out:
- id: msout - id: msout
- id: BLsmooth.log - id: BLsmooth.log
...@@ -717,6 +725,8 @@ steps: ...@@ -717,6 +725,8 @@ steps:
source: aoflag_freqconcat source: aoflag_freqconcat
- id: execute - id: execute
source: selfcal source: selfcal
- id: selfcal_strategy
source: selfcal_strategy
out: out:
- id: msout - id: msout
- id: logfiles - id: logfiles
......