blob: 63d410907b09b98c9bd9becfd8c5150979a1120a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
include "../lib/apphotdef.h"
include "../lib/fitskydef.h"
# APSFREE -- Procedure to free the sky fitting structure.
procedure apsfree (ap)
pointer ap # pointer to the apphot structure
begin
if (ap == NULL)
return
if (AP_NOISE(ap) != NULL)
call ap_noisecls (ap)
if (AP_PDISPLAY(ap) != NULL)
call ap_dispcls (ap)
if (AP_PSKY(ap) != NULL)
call ap_skycls (ap)
if (AP_IMBUF(ap) != NULL)
call mfree (AP_IMBUF(ap), TY_REAL)
if (AP_MW(ap) != NULL)
call mw_close (AP_MW(ap))
call mfree (ap, TY_STRUCT)
end
# AP_SKYCLS -- Procedure to close up the sky fitting arrays.
procedure ap_skycls (ap)
pointer ap # pointer to the apphot structure
pointer sky
begin
sky = AP_PSKY(ap)
if (sky == NULL)
return
if (AP_SKYPIX(sky) != NULL)
call mfree (AP_SKYPIX(sky), TY_REAL)
if (AP_INDEX(sky) != NULL)
call mfree (AP_INDEX(sky), TY_INT)
if (AP_COORDS(sky) != NULL)
call mfree (AP_COORDS(sky), TY_INT)
if (AP_SWGT(sky) != NULL)
call mfree (AP_SWGT(sky), TY_REAL)
call mfree (AP_PSKY(ap), TY_STRUCT)
end
|