Removal of OH sky lines
This recipes is an advanced tool to remove OH sky lines.
DO CATG Type Explanation Required #Frames
-------- ----- ----------- -------- -------
CUBE_OBJECT F3I object cubes Y >=1
CUBE_SKY F3I sky cube Y 1
DO_CATG Type Explanation
-------- ----- -----------
OBJECT_S F3I Corrected object cubes
Create an object for the recipe kmo_sky_tweak.
import cpl
kmo_sky_tweak = cpl.Recipe("kmo_sky_tweak")
Subtract thermal background from input cube.(TRUE (apply) or FALSE (don’t apply) (bool; default: True) [default=True].
The following code snippet shows the default settings for the available parameters.
import cpl
kmo_sky_tweak = cpl.Recipe("kmo_sky_tweak")
kmo_sky_tweak.param.tbsub = True
You may also set or overwrite some or all parameters by the recipe parameter param, as shown in the following example:
import cpl
kmo_sky_tweak = cpl.Recipe("kmo_sky_tweak")
[...]
res = kmo_sky_tweak( ..., param = {"tbsub":True})
See also
cpl.Recipe for more information about the recipe object.
Please report any problems to Erich Wiezorrek. Alternatively, you may send a report to the ESO User Support Department.
This file is part of the CRIRES Instrument Pipeline Copyright (C) 2002,2003 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Code author: Erich Wiezorrek <usd-help@eso.org>