FORS Pipeline Reference Manual  4.12.5
test_simulate.h
1 /* $Id: test_simulate.h,v 1.9 2007-10-18 12:48:12 jmlarsen Exp $
2  *
3  * This file is part of the FORS Library
4  * Copyright (C) 2002-2006 European Southern Observatory
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 /*
22  * $Author: jmlarsen $
23  * $Date: 2007-10-18 12:48:12 $
24  * $Revision: 1.9 $
25  * $Name: not supported by cvs2svn $
26  */
27 
28 #ifndef TEST_SIMULATE_H
29 #define TEST_SIMULATE_H
30 
31 #include <fors_image.h>
32 
33 #include <cpl.h>
34 
35 cpl_frame *
36 create_bias(const char *filename, const char *tag, cpl_frame_group group);
37 
38 cpl_frame *
39 create_master_bias(const char *filename, const char *tag, cpl_frame_group group);
40 
41 cpl_frame *
42 create_screen_flat(const char *filename, const char *tag, cpl_frame_group group);
43 
44 cpl_frame *
45 create_sky_flat(const char *filename, const char *tag, cpl_frame_group group,
46  double exptime);
47 
48 cpl_frame *
49 create_master_sky_flat(const char *filename, const char *tag,
50  cpl_frame_group group, double exptime);
51 
52 cpl_frame *
53 create_standard(const char *filename, const char *tag, cpl_frame_group group);
54 
55 cpl_frame *
56 create_dark(const char *filename, const char *tag, cpl_frame_group group);
57 
58 cpl_frame *
59 create_std_cat(const char *filename, const char *tag, cpl_frame_group group);
60 
61 cpl_frame *
62 create_phot_table(const char *filename, const char *tag, cpl_frame_group group);
63 
64 void
65 create_standard_keys(cpl_propertylist *header, double exptime);
66 
67 #endif
cpl_frame * create_bias(const char *filename, const char *tag, cpl_frame_group group)
Simulate bias image.
cpl_frame * create_dark(const char *filename, const char *tag, cpl_frame_group group)
Simulate dark image.
cpl_frame * create_master_sky_flat(const char *filename, const char *tag, cpl_frame_group group, double exptime)
Simulate master sky flat image.
cpl_frame * create_master_bias(const char *filename, const char *tag, cpl_frame_group group)
Simulate master bias image.
void create_standard_keys(cpl_propertylist *header, double exptime)
Write FORS standard keywords to simulated header.
cpl_frame * create_std_cat(const char *filename, const char *tag, cpl_frame_group group)
Create standard star catalogue.
cpl_frame * create_sky_flat(const char *filename, const char *tag, cpl_frame_group group, double exptime)
Simulate sky flat image.
cpl_frame * create_screen_flat(const char *filename, const char *tag, cpl_frame_group group)
Simulate screen flat image.
cpl_frame * create_phot_table(const char *filename, const char *tag, cpl_frame_group group)
Create photometry table.
cpl_frame * create_standard(const char *filename, const char *tag, cpl_frame_group group)
Create standard star image.