UVES Pipeline Reference Manual  5.4.0
uves_test_simulate.h
1 /*
2  * This file is part of the ESO UVES Pipeline
3  * Copyright (C) 2004,2005 European Southern Observatory
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, 51 Franklin St, Fifth Floor, Boston, MA 02111-1307 USA
18  */
19 
20 /*
21  * $Author: jmlarsen $
22  * $Date: 2007-06-26 14:51:01 $
23  * $Revision: 1.5 $
24  * $Name: not supported by cvs2svn $
25  * $Log: not supported by cvs2svn $
26  * Revision 1.4 2007/06/20 15:55:37 jmlarsen
27  * Parametrized assumption about MIDAS format
28  *
29  * Revision 1.3 2007/06/20 15:49:31 jmlarsen
30  * Support creating first/last abs. order number
31  *
32  * Revision 1.2 2007/05/22 11:28:14 jmlarsen
33  * Removed unused variables
34  *
35  * Revision 1.1 2007/03/15 12:47:34 jmlarsen
36  * Imported sources
37  *
38  */
39 #ifndef UVES_TEST_SIMULATE_H
40 #define UVES_TEST_SIMULATE_H
41 
42 #include <uves_utils_polynomial.h>
43 #include <cpl.h>
44 #include <stdbool.h>
45 
46 void
47 create_order_table(cpl_table **ordertable, polynomial **order_locations, cpl_table **tracetable,
48  int minorder, int maxorder, int nx);
49 
50 
51 void
52 create_line_table(cpl_table **linetable, polynomial **dispersion, polynomial **abs_orders,
53  int *firstabs, int *lastabs,
54  int minorder, int maxorder, int nx);
55 
56 #endif