AMBER Beam Monitoring Recipe
This recipe calculates the Beam’s x position, y position, flux and size in x and y
Create an object for the recipe amber_BeamPos.
import cpl
amber_BeamPos = cpl.Recipe("amber_BeamPos")
the string option (str; default: None) [default=”None”].
Number of Frames to be averaged per Visibility (long; default: 1) [default=1].
The following code snippet shows the default settings for the available parameters.
import cpl
amber_BeamPos = cpl.Recipe("amber_BeamPos")
amber_BeamPos.param.stropt = "None"
amber_BeamPos.param.binning = 1
You may also set or overwrite some or all parameters by the recipe parameter param, as shown in the following example:
import cpl
amber_BeamPos = cpl.Recipe("amber_BeamPos")
[...]
res = amber_BeamPos( ..., param = {"stropt":"None", "binning":1})
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.