This file is indexed.

/usr/share/doc/cpl-plugin-vimos-doc/html/_sources/vmifucalib.txt is in cpl-plugin-vimos-doc 2.9.9+dfsg-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
The vmifucalib recipe
===============================================================

.. data:: vmifucalib

Synopsis
--------

Generate IFU calibrations from a set of flat and arc lamp exposures.

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

This recipe produces the extraction mask, the wavelength calibration,
and the relative transmission correction, from a set of flat field
and one arc lamp exposures (IFU mode).


Input files
^^^^^^^^^^^^
::

  DO category:                 Type:       Explanation:       Required:
  IFU_SCREEN_FLAT              Raw         Flat field            Y
  IFU_ARC_SPECTRUM             Raw         Arc spectrum          .

  LINE_CATALOG                 Calib       Arc line catalog      .

  MASTER_BIAS                  Calib       Master bias           Y
  IFU_IDENT                    Calib       Fiber identification  .

  CCD_TABLE                    Calib       Bad pixel table       .


Output files
^^^^^^^^^^^^
::

  DO category:                 Data type:  Explanation:
  IFU_MASTER_SCREEN_FLAT       FITS image  Stack of all raw flat fields
  IFU_ARC_SPECTRUM_EXTRACTED   FITS image  Extracted arc spectra
  IFU_FLAT_SPECTRUM_EXTRACTED  FITS image  Extracted flat field spectra
  IFU_TRACE                    FITS table  Extraction mask
  IFU_IDS                      FITS table  Wavelength calibration
  IFU_TRANSMISSION             FITS table  Transmission correction

An arc spectrum exposure may not be specified in input, but in that
case no wavelength calibration nor fiber relative transmission
correction will be computed, and further reduction of associated
scientific data will not be possible; the only products in this
case will be the stack of all the input raw flat field exposures,
and the extraction mask. If the arc spectrum exposure is specified
in input, then also a line catalog must be given. The fiber
identification table, if given, ensures that all spectra will be
safely identified and assigned to the correct spatial position,
but in most cases it will be possible to reduce the data even
without specifying this table in the input SOF. A CCD table
must be specified only if a bad pixel cleaning is requested.


For more details, please refer to the VIMOS Pipeline User's Guide.


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

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

   Create an object for the recipe vmifucalib.

::

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

Parameters
----------

.. py:attribute:: vmifucalib.param.AllowSingleFrames

    Flat fields combination method is ignored. (bool; default: True) [default=True].
.. py:attribute:: vmifucalib.param.StackMethod

    Flat fields combination method. (str; default: 'MinMax') [default="MinMax"].
.. py:attribute:: vmifucalib.param.KSigmaLow

    Low threshold for K-sigma clipping method. (float; default: 5.0) [default=5.0].
.. py:attribute:: vmifucalib.param.KSigmaHigh

    High threshold for K-sigma clipping method. (float; default: 5.0) [default=5.0].
.. py:attribute:: vmifucalib.param.MinRejection

    Number of lowest rejected values for rejection method. (long; default:  0) [default=0].
.. py:attribute:: vmifucalib.param.MaxRejection

    Number of highest rejected values for rejection method. (long;  default: 1) [default=1].
.. py:attribute:: vmifucalib.param.BiasMethod

    Bias removal method. (str; default: 'Zmaster') [default="Zmaster"].
.. py:attribute:: vmifucalib.param.CleanBadPixel

    Bad pixel correction on master flat field. (bool; default: False) [default=False].
.. py:attribute:: vmifucalib.param.ApplyTransmission

    Apply transmission correction to extracted arc lamp spectra (bool;  default: True) [default=True].
.. py:attribute:: vmifucalib.param.MaxIdsRms

    Maximum tolerated RMS of residuals in IDS fit (float; default: 2.0) [default=2.0].
.. py:attribute:: vmifucalib.param.LineIdent

    Arc line identification method. (str; default: 'Blind') [default="Blind"].
.. py:attribute:: vmifucalib.param.MaxTraceRejection

    Maximum percentage of rejected positions in fiber spectra tracing  (long; default: 33) [default=33].
.. py:attribute:: vmifucalib.param.ComputeQC

    Compute QC1 parameters (bool; default: True) [default=True].


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

::

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

   vmifucalib.param.AllowSingleFrames = True
   vmifucalib.param.StackMethod = "MinMax"
   vmifucalib.param.KSigmaLow = 5.0
   vmifucalib.param.KSigmaHigh = 5.0
   vmifucalib.param.MinRejection = 0
   vmifucalib.param.MaxRejection = 1
   vmifucalib.param.BiasMethod = "Zmaster"
   vmifucalib.param.CleanBadPixel = False
   vmifucalib.param.ApplyTransmission = True
   vmifucalib.param.MaxIdsRms = 2.0
   vmifucalib.param.LineIdent = "Blind"
   vmifucalib.param.MaxTraceRejection = 33
   vmifucalib.param.ComputeQC = True


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

::

   import cpl
   vmifucalib = cpl.Recipe("vmifucalib")
   [...]
   res = vmifucalib( ..., param = {"AllowSingleFrames":True, "StackMethod":"MinMax"})


.. 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 `ESO VIMOS Pipeline Team and VIMOS Consortium <usd-help@eso.org>`_. Alternatively, you may 
send a report to the `ESO User Support Department <usd-help@eso.org>`_.

Copyright
---------

This file is currently part of the VIMOS Instrument Pipeline
Copyright (C) 2002-2011 European Southern Observatory

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA


.. codeauthor:: ESO VIMOS Pipeline Team and VIMOS Consortium <usd-help@eso.org>