1 | /*
|
---|
2 | *+
|
---|
3 | * Name:
|
---|
4 | * pal1.h
|
---|
5 |
|
---|
6 | * Purpose:
|
---|
7 | * Definitions of private PAL functions
|
---|
8 |
|
---|
9 | * Language:
|
---|
10 | * Starlink ANSI C
|
---|
11 |
|
---|
12 | * Type of Module:
|
---|
13 | * Include file
|
---|
14 |
|
---|
15 | * Invocation:
|
---|
16 | * #include "pal1.h"
|
---|
17 |
|
---|
18 | * Description:
|
---|
19 | * Function prototypes for private PAL functions. Will not be
|
---|
20 | * installed.
|
---|
21 |
|
---|
22 | * Authors:
|
---|
23 | * TIMJ: Tim Jenness (JAC, Hawaii)
|
---|
24 | * {enter_new_authors_here}
|
---|
25 |
|
---|
26 | * History:
|
---|
27 | * 2012-08-24 (TIMJ):
|
---|
28 | * Initial version
|
---|
29 | * Adapted with permission from the Fortran SLALIB library.
|
---|
30 | * {enter_further_changes_here}
|
---|
31 |
|
---|
32 | * Copyright:
|
---|
33 | * Copyright (C) 2012 Science and Technology Facilities Council.
|
---|
34 | * All Rights Reserved.
|
---|
35 |
|
---|
36 | * Licence:
|
---|
37 | * This program is free software; you can redistribute it and/or
|
---|
38 | * modify it under the terms of the GNU General Public License as
|
---|
39 | * published by the Free Software Foundation; either version 3 of
|
---|
40 | * the License, or (at your option) any later version.
|
---|
41 | *
|
---|
42 | * This program is distributed in the hope that it will be
|
---|
43 | * useful, but WITHOUT ANY WARRANTY; without even the implied
|
---|
44 | * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
---|
45 | * PURPOSE. See the GNU General Public License for more details.
|
---|
46 | *
|
---|
47 | * You should have received a copy of the GNU General Public License
|
---|
48 | * along with this program; if not, write to the Free Software
|
---|
49 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
---|
50 | * MA 02110-1301, USA.
|
---|
51 |
|
---|
52 | * Bugs:
|
---|
53 | * {note_any_bugs_here}
|
---|
54 | *-
|
---|
55 | */
|
---|
56 |
|
---|
57 | #ifndef PAL1HDEF
|
---|
58 | #define PAL1HDEF
|
---|
59 |
|
---|
60 | void pal1Atms ( double rt, double tt, double dnt, double gamal,
|
---|
61 | double r, double * dn, double * rdndr );
|
---|
62 |
|
---|
63 | void pal1Atmt ( double r0, double t0, double alpha, double gamm2,
|
---|
64 | double delm2, double c1, double c2, double c3, double c4,
|
---|
65 | double c5, double c6, double r,
|
---|
66 | double *t, double *dn, double *rdndr );
|
---|
67 |
|
---|
68 | #endif
|
---|