/* * This file is part of the ESO SINFONI Pipeline * Copyright (C) 2004,2005 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, 51 Franklin St, Fifth Floor, Boston, MA 02111-1307 USA */ /*--------------------------------------------------------------------------- File name :sinfo_lamp_cfg.c Author :Juergen Schreiber Created on :March 2002 Description :prepare halogen lamp spectrum frames configuration handling tools *--------------------------------------------------------------------------*/ #ifdef HAVE_CONFIG_H # include #endif /*--------------------------------------------------------------------------- Includes ---------------------------------------------------------------------------*/ #include "sinfo_lamp_cfg.h" /**@{*/ /** * @defgroup sinfo_lamp_cfg Flat frame manipulation functions * * TBD */ /*--------------------------------------------------------------------------- Function codes ---------------------------------------------------------------------------*/ /** @name sinfo_lamp_cfg_create() @memo allocate memory for a lamp_cfg struct @return pointer to allocated base lamp_cfg structure @note only the main (base) structure is allocated */ lamp_config * sinfo_lamp_cfg_create(void) { return cpl_calloc(1, sizeof(lamp_config)); } /** @name sinfo_lamp_cfg_destroy() @memo deallocate all memory associated with a lamp_config data structure @param sc lamp_config to deallocate @return void */ void sinfo_lamp_cfg_destroy(lamp_config * sc) { if (sc == NULL ) return; /* Free main struct */ cpl_free(sc); return; } /**@}*/