The amber_BeamPos recipe
===============================================================

.. data:: amber_BeamPos

Synopsis
--------

AMBER Beam Monitoring Recipe

Description
-----------

This recipe calculates the Beam's x position, y position, flux and size in x and y


Constructor
-----------

.. method:: cpl.Recipe("amber_BeamPos")
   :noindex:

   Create an object for the recipe amber_BeamPos.

::

   import cpl
   amber_BeamPos = cpl.Recipe("amber_BeamPos")

Parameters
----------

.. py:attribute:: amber_BeamPos.param.stropt

    the string option (str; default: None) [default="None"].
.. py:attribute:: amber_BeamPos.param.binning

    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})


.. seealso:: `cpl.Recipe <http://packages.python.org/python-cpl/recipe.html>`_
   for more information about the recipe object.

Bug reports
-----------

Please report any problems to `Tom Licha <usd-help@eso.org>`_. Alternatively, you may 
send a report to the `ESO User Support Department <usd-help@eso.org>`_.

Copyright
---------

GP

.. codeauthor:: Tom Licha <usd-help@eso.org>
