AMBER Science and Calibration Recipe
This recipe calculates Visibilities from a Pixel-To-Visibility-Matrix and Raw Files in 2- and 3-Telescope Mode (HL-version)
Create an object for the recipe amber_SciCal.
import cpl
amber_SciCal = cpl.Recipe("amber_SciCal")
Number of Frames to be averaged per Visibility (long; default: 1) [default=1].
select good visibilities and try to calculate the transfer function (bool; default: True) [default=True].
TBD (bool; default: True) [default=True].
TBD (bool; default: True) [default=True].
TBD (bool; default: False) [default=False].
TBD (float; default: 1.0) [default=1.0].
TBD (float; default: 0.0) [default=0.0].
TBD (float; default: 1.35490903e-316) [default=1.35490902655e-316].
The following code snippet shows the default settings for the available parameters.
import cpl
amber_SciCal = cpl.Recipe("amber_SciCal")
amber_SciCal.param.binning = 1
amber_SciCal.param.selectPlusTrf = True
amber_SciCal.param.activate_BEAUTIFY_PISTON = True
amber_SciCal.param.activate_MIN_PHOTOMETRY = True
amber_SciCal.param.activate_DROP = False
amber_SciCal.param.value_BEAUTIFY_PISTON = 1.0
amber_SciCal.param.value_MIN_PHOTOMETRY = 0.0
amber_SciCal.param.value_DROP = 1.35490902655e-316
You may also set or overwrite some or all parameters by the recipe parameter param, as shown in the following example:
import cpl
amber_SciCal = cpl.Recipe("amber_SciCal")
[...]
res = amber_SciCal( ..., param = {"binning":1, "selectPlusTrf":True})
See also
cpl.Recipe for more information about the recipe object.
Please report any problems to Tom Licha. Alternatively, you may send a report to the ESO User Support Department.