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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
|
include <imhdr.h>
include <tbset.h>
include <mach.h>
include "../lib/daophotdef.h"
include "../lib/apseldef.h"
include "../lib/nstardef.h"
# DP_NPHOT -- Read in the groups and fit all the stars in each group
# simultaneously.
procedure dp_nphot (dao, im, grp, nst, rej, ap_text)
pointer dao # pointer to the daophot structure
pointer im # input image descriptor
int grp # input group file descriptor
int nst # output photometry file descriptor
int rej # rejections file descriptor
bool ap_text # photometry text file
bool converge
int out_record, rout_record, in_record, nrow_in_table, old_size, niter
int cdimen, stat
pointer sp, indices, fields, icolpoint, ocolpoint, key, nstar, apsel
real radius, mean_sky
int dp_ggroup(), tbpsta(), dp_nstarfit(), dp_nxycheck()
real dp_nmsky()
begin
# Store the original value of the fitting radius.
radius = DP_FITRAD(dao)
DP_FITRAD(dao) = min (DP_FITRAD(dao), DP_PSFRAD(dao))
DP_SFITRAD(dao) = DP_FITRAD(dao) * DP_SCALE(dao)
# Allocate working memory.
call smark (sp)
call salloc (icolpoint, NAPGROUP, TY_INT)
call salloc (indices, NAPPAR, TY_INT)
call salloc (fields, SZ_LINE, TY_CHAR)
call salloc (ocolpoint, NST_NOUTCOL, TY_INT)
# Get some daophot pointers.
apsel = DP_APSEL(dao)
nstar = DP_NSTAR (dao)
# Allocate space for and define the output table.
if (DP_TEXT(dao) == YES) {
call dp_xpnewnstar (dao, nst)
if (rej != NULL)
call dp_xpnewnstar (dao, rej)
} else {
call dp_tpnewnstar (dao, nst, Memi[ocolpoint])
if (rej != NULL)
call dp_tpnewnstar (dao, rej, Memi[ocolpoint])
}
# Set up the input file.
call dp_gnindices (Memi[indices])
if (ap_text) {
call pt_kyinit (key)
call dp_gnstpsf (Memi[indices], Memc[fields], NAPGROUP)
nrow_in_table = 0
} else {
key = NULL
call dp_tnstinit (grp, Memi[icolpoint])
nrow_in_table = tbpsta (grp, TBL_NROWS)
}
# Allocate some memory for fitting.
call dp_memapsel (dao, Memi[indices], NAPPAR, DP_MAXGROUP(dao) + 1)
call dp_memnstar (dao, DP_MAXGROUP(dao) + 1)
# Initialize the input/output files for reading/writing.
in_record = 1
out_record = 0
rout_record = 0
repeat {
# Read in the next group of stars.
old_size = dp_ggroup (dao, grp, key, Memc[fields], Memi[indices],
Memi[icolpoint], nrow_in_table, DP_MAXGROUP(dao), in_record,
DP_NGNUM(nstar))
if (old_size <= 0)
break
DP_NNUM(nstar) = old_size
# Convert coordinates if necessary.
call dp_win (dao, im, Memr[DP_APXCEN(apsel)],
Memr[DP_APYCEN(apsel)], Memr[DP_APXCEN(apsel)],
Memr[DP_APYCEN(apsel)], DP_NNUM(nstar))
# Print out the group number and number of stars.
if (DP_VERBOSE (dao) == YES) {
call printf ("Group: %4d contains %2d stars\n")
call pargi (DP_NGNUM (nstar))
call pargi (DP_NNUM (nstar))
}
# If the group center is undefined or off image skip to next
# group.
if (dp_nxycheck (im, Memr[DP_APXCEN(apsel)], Memr[DP_APYCEN(apsel)],
DP_NNUM(nstar), DP_FITRAD(dao), stat) <= 0) {
if (DP_VERBOSE(dao) == YES) {
if (stat < 0)
call printf (
"\tGroup %d center is undefined: skipping\n")
else if (stat == 0)
call printf ("\tGroup %d is off the image: skipping\n")
call pargi (DP_NGNUM(nstar))
}
next
# If too many stars skip to the next group.
} else if (DP_NNUM (nstar) > DP_MAXGROUP(dao)) {
if (DP_VERBOSE(dao) == YES) {
call printf ("\tGroup %d larger than %d stars: skipping\n")
call pargi (DP_NGNUM(nstar))
call pargi (DP_MAXGROUP(dao))
}
niter = 0
call realloc (DP_NIER(nstar), DP_NNUM(nstar), TY_INT)
call dp_nstindef (dao, DP_NNUM(nstar), NSTERR_BIGGROUP)
# If the mean sky value of group is undefined skip to next group.
} else if (IS_INDEFR (dp_nmsky (Memr[DP_APMSKY(apsel)],
DP_NNUM(nstar), mean_sky))) {
if (DP_VERBOSE(dao) == YES) {
call printf (
"\tGroup %d sky value is undefined: skipping\n")
call pargi (DP_NGNUM(nstar))
}
niter = 0
call dp_nstindef (dao, DP_NNUM(nstar), NSTERR_INDEFSKY)
# Do the fit.
} else {
# Estimate values of INDEF magnitudes.
call dp_nmaginit (dao, Memr[DP_APMAG(apsel)],
Memr[DP_APERR(apsel)], DP_NNUM(nstar))
# Set up for the fit.
if (DP_RECENTER(dao) == YES)
cdimen = 3 * DP_NNUM(nstar) + 1
else
cdimen = DP_NNUM(nstar) + 1
# Iterate.
for (niter = 1; niter <= DP_MAXITER(dao); niter = niter + 1) {
DP_NNUM(nstar) = dp_nstarfit (dao, im, DP_NNUM(nstar),
mean_sky, cdimen, niter, converge)
if (DP_NNUM(nstar) <= 0)
break
if (converge)
break
}
# Solution did not converge.
niter = min (niter, DP_MAXITER(dao))
}
# Now write out the results.
if (DP_TEXT(dao) == YES)
call dp_xntwrite (dao, im, nst, rej, niter, old_size)
else
call dp_tntwrite (dao, im, nst, rej, niter, old_size,
out_record, rout_record, Memi[ocolpoint])
}
if (ap_text)
call pt_kyfree (key)
call sfree (sp)
# Restore the original value of the fitting radius.
DP_FITRAD(dao) = radius
DP_SFITRAD(dao) = DP_FITRAD(dao) * DP_SCALE(dao)
end
# DP_NSTINDEF -- Set magnitudes and fitting parameters of unfit stars to indef.
procedure dp_nstindef (dao, max_nstars, pier)
pointer dao # pointer to the daophot structure
int max_nstars # number of stars
int pier # the photometry error code
int i
pointer apsel, nstar
begin
apsel = DP_APSEL(dao)
nstar = DP_NSTAR(dao)
do i = 1, max_nstars {
Memr[DP_APMAG(apsel)+i-1] = INDEFR
Memr[DP_APERR(apsel)+i-1] = INDEFR
Memr[DP_APCHI(apsel)+i-1] = INDEFR
Memr[DP_APSHARP(apsel)+i-1] = INDEFR
Memi[DP_NIER(nstar)+i-1] = pier
}
end
# DP_GNINDICES -- Get the memory allocation fields.
procedure dp_gnindices (indices)
int indices[ARB] # index array
begin
indices[1] = DP_PAPID
indices[2] = DP_PAPXCEN
indices[3] = DP_PAPYCEN
indices[4] = DP_PAPMAG1
indices[5] = DP_PAPSKY
indices[6] = DP_PAPGROUP
indices[7] = DP_PAPMERR1
indices[8] = DP_PAPNITER
indices[9] = DP_PAPSHARP
indices[10] = DP_PAPCHI
end
define GRP_CTRINDEF -1
define GRP_CTROFFIMAGE 0
define GRP_CTROK 1
# DP_NXYCHECK -- Check that the center of the group is defined. -1 is
# returned if the center of the group is undefined, 0, is returned if the
# group is entirely off the image, 1 is returned if the group is at least
# partially on the input image.
int procedure dp_nxycheck (im, x, y, group_size, radius, stat)
pointer im # pointer to the input image
real x[ARB] # array of x values
real y[ARB] # array of y values
int group_size # the size of the group
real radius # the fitting radius
int stat # the return status
int i, nxy
real xmin, xmax, ymin, ymax, xx, yy
begin
# Initialize.
stat = GRP_CTRINDEF
xmin = MAX_REAL
xmax = -MAX_REAL
ymin = MAX_REAL
ymax = -MAX_REAL
# Compute the minimum and maximum x and y values.
nxy = 0
do i = 1, group_size {
xx = x[i]
yy = y[i]
if (IS_INDEFR(xx) || IS_INDEFR(yy))
next
nxy = nxy + 1
if (xx < xmin)
xmin = xx
if (xx > xmax)
xmax = xx
if (yy < ymin)
ymin = yy
if (yy > ymax)
ymax = yy
}
if (nxy <= 0)
return (stat)
# Test the min and max values.
stat = GRP_CTROFFIMAGE
if ((int (xmin - radius) + 1) > IM_LEN(im,1))
return (stat)
if (int (xmax + radius) < 1)
return (stat)
if ((int (ymin - radius) + 1) > IM_LEN(im,2))
return (stat)
if (int (ymax + radius) < 1)
return (stat)
# The group is on the image.
stat = GRP_CTROK
return (stat)
end
# DP_NMSKY -- Compute the mean sky value for the group of stars.
real procedure dp_nmsky (sky, group_size, msky)
real sky[ARB] # the array of sky values
int group_size # the size of the group of stars
real msky # the mean sky value
int i, nsky
real sky_sum
begin
sky_sum = 0.0
nsky = 0
do i = 1, group_size {
if (IS_INDEFR(sky[i]))
next
sky_sum = sky_sum + sky[i]
nsky = nsky + 1
}
if (nsky <= 0)
msky = INDEFR
else
msky = sky_sum / nsky
return (msky)
end
define MIN_REL_BRIGHT 1.0E-04 # minimum relative brightness
define INIT_REL_BRIGHT 0.01 # initial relative brightness
# DP_NMAGINIT -- Initialize the magnitude and magnitude error arrays before
# fitting the group.
procedure dp_nmaginit (dao, mag, magerr, group_size)
pointer dao # pointer to the daophot strucuture
real mag[ARB] # the magnitude array
real magerr[ARB] # the magnitude error array
int group_size # size of the group
int i
pointer psffit
begin
psffit = DP_PSFFIT (dao)
do i = 1, group_size {
if (IS_INDEFR(mag[i]))
mag[i] = INIT_REL_BRIGHT
else {
mag[i] = DAO_RELBRIGHT (psffit, mag[i])
if (mag[i] <= MIN_REL_BRIGHT)
mag[i] = INIT_REL_BRIGHT
}
magerr[i] = 0.0
}
end
|