1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
.. _restrictions:
.. module:: cpl
Restrictions for CPL recipes
============================
Not every information can be retrieved from recipes with the standard CPL
functions. Only MUSE recipes provide additional interfaces that allow the
definition of input, calibration and output frames.
All other interfaces will have the following restrictions:
#. The :attr:`Recipe.calib` attribute is not filled with templates for
calibration frames. After recipe creation, this attribute is empty. Also, no
check on the required calibration frames may be done before calling the
recipe. Anything that is set here will be forwarded to the recipe.
#. In the :mod:`cpl.esorex` support, directly assigning the recipe calibration
files from the SOF file with
:literal:`recipe.calib = cpl.esorex.read_sof('file')` will also put the
raw input file into :attr:`Recipe.calib` unless :attr:`Recipe.tags`
and/or :attr:`Recipe.tag` are set manually. The standard recipe
interface does not provide a way to distinguish between raw input and
calibration files.
#. The :attr:`Recipe.tags` attribute is set to :obj:`None`.
#. The :attr:`Recipe.tag` attribute is not initially set. If this
attribute is not set manually, the tag is required when executing the
attribute.
#. Accessing the attribute :meth:`Recipe.output` raises an exception.
Technical Background
--------------------
CPL recipes register all their parameter definitions with the CPL function
:func:`cpl_parameterlist_append()`. All registered parameters may be retrieved
from the recipe structure as a structure which contains all defined
parameters.
For frames, such a mechanism does not exist, although components of the
infrastructure are implemented. The CPL modules :mod:`cpl_recipeconfig` allows
the definition of input, raw, and output frames for a recipe. However, this
module is only half-way done, has no connection to the recipe definition and
is not mandantory for CPL recipes. The MUSE pipeline recipes (with the
exception of those contributed by ESO) implement a central frameconfig
registry which allows to access this meta information from the Python
interface.
|