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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include <fset.h>
include <ctype.h>
include <error.h>
include <imhdr.h>
include <pkg/gtools.h>
include <pkg/xtanswer.h>
define VERBOSE_OUTPUT 1
define LIST_OUTPUT 2
define DEFAULT_OUTPUT 3
define IMAGE_OP 1
define LIST_OP 2
define CF_UNIFORM 1
define CF_USER 2
define CF_STATISTICAL 3
define CF_INSTRUMENTAL 4
define NADD 20 # Number of points that can be added by ICFIT
# T_CURFIT -- cl interface to the curfit package. Task CURFIT provides
# four fitting options: legendre, chebyshev, cubic spline or linear spline.
# The output can be printed in default, verbose or tabular formats. The
# user can also choose to interactively fit the curve.
procedure t_curfit ()
pointer x, y, w, gt, fcn, fname, flist, dev, str, sp, ic
bool listdata, verbose, power, redir
int fd, ofmt, interactive, datatype
int axis, nvalues, nmax, weighting
pointer gt_init()
bool clgetb()
int imtopen(), clgeti(), cf_operand(), cf_rimage(), cf_rlist()
int imtgetim(), clgwrd()
int fstati()
begin
# Allocate space for string buffers
call smark (sp)
call salloc (fcn, SZ_FNAME, TY_CHAR)
call salloc (fname, SZ_FNAME, TY_CHAR)
call salloc (flist, SZ_LINE, TY_CHAR)
call salloc (dev, SZ_FNAME, TY_CHAR)
call salloc (str, SZ_FNAME, TY_CHAR)
# First get cl parameters. Check to see if input has been redirected.
redir = false
if (fstati (STDIN, F_REDIR) == YES) {
redir = true
call strcpy ("STDIN", Memc[fname], SZ_FNAME)
} else {
call clgstr ("input", Memc[flist], SZ_LINE)
fd = imtopen (Memc[flist])
}
listdata = clgetb ("listdata")
verbose = clgetb ("verbose")
ofmt = DEFAULT_OUTPUT
if (listdata)
ofmt = LIST_OUTPUT
else if (verbose)
ofmt = VERBOSE_OUTPUT
# Determine the calculation datatype.
switch (clgwrd ("calctype", Memc[dev], SZ_FNAME, "|real|double|")) {
case 1:
datatype = TY_REAL
case 2:
datatype = TY_DOUBLE
}
if (clgetb ("interactive")) {
interactive = YES
call clgstr ("device", Memc[dev], SZ_FNAME)
} else {
interactive = ALWAYSNO
call strcpy ("", Memc[dev], SZ_FNAME)
}
power = clgetb ("power")
call ic_open (ic)
call clgstr ("function", Memc[fcn], SZ_FNAME)
call ic_pstr (ic, "function", Memc[fcn])
call ic_puti (ic, "order", clgeti ("order"))
weighting = clgwrd ("weighting", Memc[str], SZ_FNAME,
"|uniform|user|statistical|instrumental|")
gt = gt_init ()
repeat {
if (!redir) {
if (imtgetim (fd, Memc[fname], SZ_FNAME) == EOF)
break
}
if (cf_operand (Memc[fname]) == IMAGE_OP) {
axis = clgeti ("axis")
nvalues = cf_rimage (Memc[fname], axis, x, y, w, weighting,
datatype)
call gt_sets (gt, GTTYPE, "line")
} else {
nvalues = cf_rlist (Memc[fname], x, y, w, weighting, datatype)
call gt_sets (gt, GTTYPE, "mark")
# For list input only, order the input array. The
# rg_ranges package requires an x ordered input array, or else
# points will be excluded from the fit. This test can be
# removed when/if the ordering restriction is removed from
# rg_xranges. Sorted data is required even when no sampling
# is done, as in the default case of sample=*. (ShJ 6-24-88)
switch (datatype) {
case TY_REAL:
call xt_sort3 (Memr[x], Memr[y], Memr[w], nvalues)
case TY_DOUBLE:
call xt_sort3d (Memd[x], Memd[y], Memd[w], nvalues)
}
}
# Allow for adding points.
nmax = nvalues + NADD
call realloc (x, nmax, datatype)
call realloc (y, nmax, datatype)
call realloc (w, nmax, datatype)
call gt_sets (gt, GTTITLE, Memc[fname])
switch (datatype) {
case TY_REAL:
call cf_fitr (ic, gt, Memr[x], Memr[y], Memr[w], nvalues,
nmax, Memc[dev], interactive, ofmt, power)
case TY_DOUBLE:
call cf_fitd (ic, gt, Memd[x], Memd[y], Memd[w], nvalues,
nmax, Memc[dev], interactive, ofmt, power)
}
call flush (STDOUT)
call mfree (x, datatype)
call mfree (y, datatype)
call mfree (w, datatype)
if (redir)
break
}
switch (datatype) {
case TY_REAL:
call ic_closer (ic)
case TY_DOUBLE:
call ic_closed (ic)
}
if (!redir)
call imtclose (fd)
call gt_free (gt)
call sfree (sp)
end
define IMAGE_OP 1
define LIST_OP 2
# CF_OPERAND -- Determine whether the operand argument is an image section
# or a list. If the string is STDIN, it is a list; if a subscript is
# present, it is an image; otherwise we must test whether or not it is a
# binary file and make the decision based on that.
int procedure cf_operand (operand)
char operand[ARB] # Input list
int first, last, ip
int access(), strncmp()
begin
# Strip off any whitespace at the beginning or end of the string.
for (ip=1; IS_WHITE(operand[ip]); ip=ip+1)
;
first = ip
for (last=ip; operand[ip] != EOS; ip=ip+1)
if (!IS_WHITE(operand[ip]))
last = ip
if (first == last)
return (LIST_OP)
else if (strncmp (operand[first], "STDIN", 5) == 0)
return (LIST_OP)
else if (operand[last] == ']')
return (IMAGE_OP)
else if (access (operand, 0, TEXT_FILE) == YES)
return (LIST_OP)
else
return (IMAGE_OP)
end
define SZ_BUF 1000
# CF_RLIST -- Read a list of two dimensional data pairs into two type
# datatype arrays in memory. Return pointers to the arrays and a count of the
# number of pixels.
int procedure cf_rlist (fname, x, y, w, weighting, datatype)
char fname[ARB] # Name of list file
pointer x # Pointer to x data values (returned)
pointer y # Pointer to y data values (returned)
pointer w # Pointer to weight values (returned)
int weighting # Type of weighting
int datatype # Datatype of x and Y values
int buflen, n, fd, ncols, lineno
pointer sp, lbuf, ip
int getline(), nscan(), open()
real cf_divzr(), cfz_divzr()
double cf_divzd(), cfz_divzd()
extern cf_divzr(), cf_divzd()
extern cfz_divzr(), cfz_divzd()
errchk open, sscan, getline, malloc
begin
call smark (sp)
call salloc (lbuf, SZ_LINE, TY_CHAR)
fd = open (fname, READ_ONLY, TEXT_FILE)
n = 0
ncols = 0
lineno = 0
while (getline (fd, Memc[lbuf]) != EOF) {
# Skip comment lines and blank lines.
lineno = lineno + 1
if (Memc[lbuf] == '#')
next
for (ip=lbuf; IS_WHITE(Memc[ip]); ip=ip+1)
;
if (Memc[ip] == '\n' || Memc[ip] == EOS)
next
if (n == 0) {
buflen = SZ_BUF
iferr {
call malloc (x, buflen, datatype)
call malloc (y, buflen, datatype)
call malloc (w, buflen, datatype)
} then
call erract (EA_FATAL)
} else if (n + 1 > buflen) {
buflen = buflen + SZ_BUF
call realloc (x, buflen, datatype)
call realloc (y, buflen, datatype)
call realloc (w, buflen, datatype)
}
# Decode the points to be plotted.
call sscan (Memc[ip])
switch (datatype) {
case TY_REAL:
call gargr (Memr[x+n])
call gargr (Memr[y+n])
call gargr (Memr[w+n])
case TY_DOUBLE:
call gargd (Memd[x+n])
call gargd (Memd[y+n])
call gargd (Memd[w+n])
}
# The first line determines whether we have an x,y list or a
# y-list. It is an error if only one value can be decoded when
# processing a two column list.
if (ncols == 0 && nscan() > 0)
ncols = nscan()
switch (nscan()) {
case 0:
call eprintf ("no args; %s, line %d: %s\n")
call pargstr (fname)
call pargi (lineno)
call pargstr (Memc[lbuf])
next
case 1:
if (ncols >= 2) {
call eprintf ("only 1 arg; %s, line %d: %s\n")
call pargstr (fname)
call pargi (lineno)
call pargstr (Memc[lbuf])
next
} else {
switch (datatype) {
case TY_REAL:
Memr[y+n] = Memr[x+n]
Memr[x+n] = n + 1.0
Memr[w+n] = 1.0
case TY_DOUBLE:
Memd[y+n] = Memd[x+n]
Memd[x+n] = n + 1.0
Memd[w+n] = 1.0d0
}
}
case 2:
if (ncols == 3) {
call eprintf ("only 2 args; %s, line %d: %s\n")
call pargstr (fname)
call pargi (lineno)
call pargstr (Memc[lbuf])
next
} else {
switch (datatype) {
case TY_REAL:
Memr[w+n] = 1.0
case TY_DOUBLE:
Memd[w+n] = 1.0d0
}
}
}
n = n + 1
}
call realloc (x, n, datatype)
call realloc (y, n, datatype)
call realloc (w, n, datatype)
switch (weighting) {
case CF_UNIFORM:
if (datatype == TY_REAL)
call amovkr (1.0, Memr[w], n)
else
call amovkd (1.0d0, Memd[w], n)
case CF_USER:
;
case CF_STATISTICAL:
if (datatype == TY_REAL) {
call aabsr (Memr[y], Memr[w], n)
call arczr (1.0, Memr[w], Memr[w], n, cf_divzr)
} else {
call aabsd (Memd[y], Memd[w], n)
call arczd (1.0d0, Memd[w], Memd[w], n, cf_divzd)
}
case CF_INSTRUMENTAL:
if (datatype == TY_REAL) {
call apowkr (Memr[w], 2, Memr[w], n)
call arczr (1.0, Memr[w], Memr[w], n, cfz_divzr)
} else {
call apowkd (Memd[w], 2, Memd[w], n)
call arczd (1.0d0, Memd[w], Memd[w], n, cfz_divzd)
}
}
call close (fd)
call sfree (sp)
return (n)
end
# CF_RIMAGE -- Read an image section and compute the projection about
# one dimension, producing x and y vectors as output.
int procedure cf_rimage (imsect, axis, x, y, w, weighting, datatype)
char imsect[ARB] # Name of image section
pointer x # Pointer to x data values
pointer y # Pointer to y data values
pointer w # Pointer to weight values
int weighting # Type of weighting
int axis # Axis about which projection is taken
int datatype # Datatype of data values
int npix
pointer im
pointer immap()
errchk immap, im_projectionr, im_projectiond, malloc
begin
im = immap (imsect, READ_ONLY, 0)
if (axis < 1 || axis > IM_NDIM(im))
call error (2, "Attempt to take projection over nonexistent axis")
npix = IM_LEN(im,axis)
call malloc (x, npix, datatype)
call malloc (y, npix, datatype)
call malloc (w, npix, datatype)
switch (datatype) {
case TY_REAL:
call im_projectionr (im, Memr[x], Memr[y], Memr[w], npix, weighting,
axis)
case TY_DOUBLE:
call im_projectiond (im, Memd[x], Memd[y], Memd[w], npix, weighting,
axis)
}
call imunmap (im)
return (npix)
end
# CF_DIVZR -- Procedure to return a real number in case of a divide by zero.
real procedure cf_divzr (a)
real a # real number
begin
return (a)
end
# CF_DIVZD -- Procedure to return a double number in case of a divide by zero.
double procedure cf_divzd (a)
double a # double precision number number
begin
return (a)
end
# CFZ_DIVZR -- Procedure to return a real number in case of a divide by zero.
real procedure cfz_divzr (a)
real a # real number
begin
return (0.0)
end
# CFZ_DIVZD -- Procedure to return a double number in case of a divide by zero.
double procedure cfz_divzd (a)
double a # double precision number number
begin
return (0.0d0)
end
|