The amber_detector recipe
===============================================================

.. data:: amber_detector

Synopsis
--------

AMBER raw data detector

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

This recipe is creating the master flatfield and the bad pixel map


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

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

   Create an object for the recipe amber_detector.

::

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

Parameters
----------

.. py:attribute:: amber_detector.param.maxFrames

    maximum Frames to be processed (int; default: 500) [default=500].


The following code snippet shows the default settings for the available 
parameters.

::

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

   amber_detector.param.maxFrames = 500


You may also set or overwrite some or all parameters by the recipe 
parameter `param`, as shown in the following example:

::

   import cpl
   amber_detector = cpl.Recipe("amber_detector")
   [...]
   res = amber_detector( ..., param = {"maxFrames":500})


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

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

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

Copyright
---------

GP

.. codeauthor:: Tom Licha <https://support.eso.org>
