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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
|
include <mach.h>
include <gset.h>
include "linmatch.h"
define MINFRACTION 0.01
define FRACTION 0.05
# XP_LPLOT -- Plot the data.
int procedure rg_lplot (gd, imr, im1, ls, udelete, region, bscale, bzero,
plot_type)
pointer gd #I pointer to the graphics stream
pointer imr #I pointer to the reference image
pointer im1 #I pointer to the input image
pointer ls #I pointer to the linmatch structure
int udelete[ARB] #I the user deletions array
int region #I the current region if applicable
real bscale #I the computed bscale value
real bzero #I the computed bzero value
int plot_type #I the current plot type
int stat
int rg_mmhplot(), rg_mmfplot(), rg_mmrplot(), rg_rifplot(), rg_rirplot()
int rg_bzfplot(), rg_bzrplot(), rg_msfplot(), rg_msrplot()
begin
stat = OK
switch (plot_type) {
case LS_MMHIST:
stat = rg_mmhplot (gd, imr, im1, ls, udelete, region)
case LS_MMFIT:
stat = rg_mmfplot (gd, ls, udelete, bscale, bzero)
case LS_MMRESID:
stat = rg_mmrplot (gd, ls, udelete, bscale, bzero)
case LS_RIFIT:
stat = rg_rifplot (gd, imr, im1, ls, udelete, region)
case LS_RIRESID:
stat = rg_rirplot (gd, imr, imr, ls, udelete, region)
case LS_BSZFIT:
stat = rg_bzfplot (gd, ls, udelete, bscale, bzero)
case LS_BSZRESID:
stat = rg_bzrplot (gd, ls, udelete, bscale, bzero)
case LS_MAGSKYFIT:
stat = rg_msfplot (gd, ls, udelete, bscale, bzero)
case LS_MAGSKYRESID:
stat = rg_msrplot (gd, ls, udelete, bscale, bzero)
default:
stat = ERR
}
return (stat)
end
# RG_MMHPLOT -- Plot the histogram of the data used to compute the mean, median,# and mode.
int procedure rg_mmhplot (gd, imr, im1, ls, udelete, region)
pointer gd #I pointer to the graphics stream
pointer imr #I pointer to the reference image
pointer im1 #I pointer to the input image
pointer ls #I pointer to the linmatch structure
int udelete[ARB] #I the user deleteions array
int region #I the current region if applicable
int nbinsr, nbins1
pointer rbuf, ibuf, sp, hgmi, hgmr, image, title, str
real rsigma, hminr, hmaxr, dhr, isigma, hmin1, hmax1, dh1, ymin, ymax
int rg_lstati(), rg_limget()
pointer rg_lstatp()
begin
# Get the data.
if (imr == NULL || im1 == NULL) {
return (ERR)
} else if (region == rg_lstati (ls,CNREGION) &&
rg_lstatp (ls,RBUF) != NULL && rg_lstatp(ls, IBUF) != NULL) {
rbuf = rg_lstatp (ls, RBUF)
ibuf = rg_lstatp (ls, IBUF)
} else if (rg_limget (ls, imr, im1, region) == OK) {
rbuf = rg_lstatp (ls, RBUF)
ibuf = rg_lstatp (ls, IBUF)
} else {
return (ERR)
}
# Get the reference image binning parameters.
rsigma = sqrt (real(Memi[rg_lstatp(ls,RNPTS)+region-1])) *
Memr[rg_lstatp(ls,RSIGMA)+region-1]
hminr = Memr[rg_lstatp(ls,RMEDIAN)+region-1] - LMODE_HWIDTH * rsigma
hmaxr = Memr[rg_lstatp(ls,RMEDIAN)+region-1] + LMODE_HWIDTH * rsigma
dhr = LMODE_ZBIN * rsigma
if (dhr <= 0.0)
return (ERR)
nbinsr = (hmaxr - hminr) / dhr + 1
if (nbinsr <= 0)
return (ERR)
# Get the input image binning parameters.
isigma = sqrt (real(Memi[rg_lstatp(ls,INPTS)+region-1])) *
Memr[rg_lstatp(ls,ISIGMA)+region-1]
hmin1 = Memr[rg_lstatp(ls,IMEDIAN)+region-1] - LMODE_HWIDTH * isigma
hmax1 = Memr[rg_lstatp(ls,IMEDIAN)+region-1] + LMODE_HWIDTH * isigma
dh1 = LMODE_ZBIN * isigma
if (dh1 <= 0.0)
return (ERR)
nbins1 = (hmax1 - hmin1) / dh1 + 1
if (nbins1 <= 0.0)
return (ERR)
# Allocate working space.
call smark (sp)
call salloc (hgmi, max (nbinsr, nbins1), TY_INT)
call salloc (hgmr, max (nbinsr, nbins1), TY_REAL)
call salloc (image, SZ_FNAME, TY_CHAR)
call salloc (title, 2 * SZ_LINE, TY_CHAR)
call salloc (str, SZ_LINE, TY_CHAR)
call gclear (gd)
# Create the reference histogram.
call aclri (Memi[hgmi], nbinsr)
call ahgmr (Memr[rbuf], Memi[rg_lstatp(ls,RNPTS)+region-1],
Memi[hgmi], nbinsr, hminr, hmaxr)
call achtir (Memi[hgmi], Memr[hgmr], nbinsr)
call alimr (Memr[hgmr], nbinsr, ymin, ymax)
# Compute the limits for the reference histogram.
call gseti (gd, G_WCS, 1)
call gsview (gd, 0.1, 0.9, 0.6, 0.9)
call gswind (gd, hminr, hmaxr, ymin, ymax)
call rg_pfill (gd, hminr, hmaxr, ymin, ymax, GF_SOLID, 0)
call rg_lstats (ls, REFIMAGE, Memc[image], SZ_FNAME)
call sprintf (Memc[str], SZ_LINE,
"Mean = %g Median = %g Mode = %g Sigma = %g")
call pargr (Memr[rg_lstatp(ls,RMEAN)+region-1])
call pargr (Memr[rg_lstatp(ls,RMEDIAN)+region-1])
call pargr (Memr[rg_lstatp(ls,RMODE)+region-1])
call pargr (rsigma)
# Create the title for the reference histogram.
call sprintf (Memc[title], 2 * SZ_LINE,
"Ref Image: %s Region: %d%s\nNbins = %d Hmin = %g Hmax = %g Dh = %g\n%s\n")
call pargstr (Memc[image])
call pargi (region)
if (udelete[region] == YES)
call pargstr (" [deleted]")
else if (Memi[rg_lstatp(ls,RDELETE)+region-1] != LS_NO)
call pargstr (" [rejected]")
else
call pargstr ("")
call pargi (nbinsr)
call pargr (hminr)
call pargr (hmaxr)
call pargr (dhr)
call pargstr (Memc[str])
call gseti (gd, G_YNMINOR, 0)
call glabax (gd, Memc[title], "", "")
# Plot the reference histogram.
call rg_lhbox (gd, Memr[hgmr], nbinsr, hminr - dhr / 2.0,
hmaxr + dhr / 2.0)
# Create the input histogram.
call aclri (Memi[hgmi], nbins1)
call ahgmr (Memr[ibuf], Memi[rg_lstatp(ls,INPTS)+region-1],
Memi[hgmi], nbins1, hmin1, hmax1)
call achtir (Memi[hgmi], Memr[hgmr], nbins1)
call alimr (Memr[hgmr], nbins1, ymin, ymax)
# Compute the limits for the input histogram.
call gseti (gd, G_WCS, 2)
call gsview (gd, 0.1, 0.9, 0.1, 0.4)
call gswind (gd, hmin1, hmax1, ymin, ymax)
call rg_pfill (gd, hmin1, hmax1, ymin, ymax, GF_SOLID, 0)
# Create the title for the input histogram.
call rg_lstats (ls, IMAGE, Memc[image], SZ_FNAME)
call sprintf (Memc[str], SZ_LINE,
"Mean = %g Median = %g Mode = %g Sigma = %g")
call pargr (Memr[rg_lstatp(ls,IMEAN)+region-1])
call pargr (Memr[rg_lstatp(ls,IMEDIAN)+region-1])
call pargr (Memr[rg_lstatp(ls,IMODE)+region-1])
call pargr (isigma)
call sprintf (Memc[title], 2 * SZ_LINE,
"Input Image: %s Region: %d%s\nNbins = %d Hmin = %g Hmax = %g Dh = %g\n%s\n")
call pargstr (Memc[image])
call pargi (region)
if (udelete[region] == YES)
call pargstr (" [deleted]")
else if (Memi[rg_lstatp(ls,RDELETE)+region-1] != NO)
call pargstr (" [rejected]")
else
call pargstr ("")
call pargi (nbins1)
call pargr (hmin1)
call pargr (hmax1)
call pargr (dh1)
call pargstr (Memc[str])
call gseti (gd, G_YNMINOR, 0)
call glabax (gd, Memc[title], "", "")
# Plot the input histogram.
call rg_lhbox (gd, Memr[hgmr], nbins1, hmin1 - dh1 / 2.0,
hmax1 + dh1 / 2.0)
call sfree (sp)
return (OK)
end
# RG_MMFPLOT -- Plot the fit computed from the mean, median, or mode.
int procedure rg_mmfplot (gd, ls, udelete, bscale, bzero)
pointer gd #I pointer to the graphics stream
pointer ls #I pointer to the linmatch structure
int udelete[ARB] #I the user deletions array
real bscale #I the fitted bscale value
real bzero #I the fitted bzero value
bool start, finish
int nregions, mtype
pointer sp, title, str, imager, image1
real xmin, xmax, ymin, ymax, diff, dxmin, dxmax, dymin, dymax, x, y
int rg_lstati()
pointer rg_lstatp()
begin
nregions = rg_lstati (ls, NREGIONS)
if (nregions <= 1)
return (ERR)
# Determine the type of data to plot.
mtype = 0
switch (rg_lstati(ls, BSALGORITHM)) {
case LS_MEAN:
mtype = LS_MEAN
case LS_MEDIAN:
mtype = LS_MEDIAN
case LS_MODE:
mtype = LS_MODE
default:
}
switch (rg_lstati(ls, BZALGORITHM)) {
case LS_MEAN:
mtype = LS_MEAN
case LS_MEDIAN:
mtype = LS_MEDIAN
case LS_MODE:
mtype = LS_MODE
default:
}
if (mtype <= 0)
return (ERR)
# Allocate working space.
call smark (sp)
call salloc (title, 2 * SZ_LINE, TY_CHAR)
call salloc (str, SZ_LINE, TY_CHAR)
call salloc (imager, SZ_LINE, TY_CHAR)
call salloc (image1, SZ_LINE, TY_CHAR)
# Clear the plot space.
call gclear (gd)
# Compute the limits of the plot.
switch (mtype) {
case LS_MEAN:
call rg_galimr (Memr[rg_lstatp(ls,IMEAN)],
Memi[rg_lstatp(ls,RDELETE)], nregions, xmin, xmax)
call rg_galimr (Memr[rg_lstatp(ls,RMEAN)],
Memi[rg_lstatp(ls,RDELETE)], nregions, ymin, ymax)
case LS_MEDIAN:
call rg_galimr (Memr[rg_lstatp(ls,IMEDIAN)],
Memi[rg_lstatp(ls,RDELETE)], nregions, xmin, xmax)
call rg_galimr (Memr[rg_lstatp(ls,RMEDIAN)],
Memi[rg_lstatp(ls,RDELETE)], nregions, ymin, ymax)
case LS_MODE:
call rg_galimr (Memr[rg_lstatp(ls,IMODE)],
Memi[rg_lstatp(ls,RDELETE)], nregions, xmin, xmax)
call rg_galimr (Memr[rg_lstatp(ls,RMODE)],
Memi[rg_lstatp(ls,RDELETE)], nregions, ymin, ymax)
}
dxmin = xmin
dxmax = xmax
dymin = ymin
dymax = ymax
diff = xmax - xmin
if (diff <= 0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * abs (xmax + xmin) / 2.0)
xmin = xmin - diff * FRACTION
xmax = xmax + diff * FRACTION
diff = ymax - ymin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * abs (ymax + ymin) / 2.0)
ymin = ymin - diff * FRACTION
ymax = ymax + diff * FRACTION
call gswind (gd, xmin, xmax, ymin, ymax)
# Construct the titles and axis labels.
call rg_lstats (ls, REFIMAGE, Memc[imager], SZ_FNAME)
call rg_lstats (ls, IMAGE, Memc[image1], SZ_FNAME)
call sprintf (Memc[str], SZ_LINE,
"Nregions = %d Ref Image = %g * Input Image + %g")
call pargi (nregions)
call pargr (bscale)
call pargr (bzero)
call sprintf (Memc[title], 2 * SZ_LINE,
"Counts for %s versus Counts for %s\n%s\n")
call pargstr (Memc[imager])
call pargstr (Memc[image1])
call pargstr (Memc[str])
call glabax (gd, Memc[title], "Input Image Counts",
"Ref Image Counts")
# Plot the data.
switch (mtype) {
case LS_MEAN:
call rg_lxyplot (gd, Memr[rg_lstatp(ls,IMEAN)],
Memr[rg_lstatp(ls,RMEAN)], Memi[rg_lstatp(ls,RDELETE)],
udelete, nregions, GM_BOX, GM_CROSS)
case LS_MEDIAN:
call rg_lxyplot (gd, Memr[rg_lstatp(ls,IMEDIAN)],
Memr[rg_lstatp(ls,RMEDIAN)], Memi[rg_lstatp(ls,RDELETE)],
udelete, nregions, GM_BOX, GM_CROSS)
case LS_MODE:
call rg_lxyplot (gd, Memr[rg_lstatp(ls,IMODE)],
Memr[rg_lstatp(ls,RMODE)], Memi[rg_lstatp(ls,RDELETE)],
udelete, nregions, GM_BOX, GM_CROSS)
}
# Plot the fit.
start = false
finish = false
if (! IS_INDEFR(bscale) && ! IS_INDEFR(bzero)) {
y = bscale * dxmin + bzero
if (y >= ymin && y <= ymax) {
call gamove (gd, dxmin, y)
start = true
}
y = bscale * dxmax + bzero
if (y >= ymin && y <= ymax) {
if (start) {
call gadraw (gd, dxmax, y)
finish = true
} else {
call gamove (gd, dxmax, y)
start = true
}
}
x = (dymin - bzero) / bscale
if (x >= xmin && x <= xmax) {
if (! start) {
call gamove (gd, x, dymin)
start = true
} else if (! finish) {
call gadraw (gd, x, dymin)
finish = true
}
}
x = (dymax - bzero) / bscale
if (x >= xmin && x <= xmax) {
if (! start) {
call gamove (gd, x, dymax)
start = true
} else if (! finish) {
call gadraw (gd, x, dymax)
finish = true
}
}
}
call sfree (sp)
return (OK)
end
# RG_MMRPLOT -- Plot the residuals from the fit computed from the mean,
# median, or mode.
int procedure rg_mmrplot (gd, ls, udelete, bscale, bzero)
pointer gd #I pointer to the graphics stream
pointer ls #I pointer to the linmatch structure
int udelete[ARB] #I the user deletions array
real bscale #I the fitted bscale value
real bzero #I the fitted bzero value
int nregions, mtype
pointer sp, resid, title, imager, image1, str
real xmin, xmax, ymin, ymax, diff
int rg_lstati()
pointer rg_lstatp()
begin
nregions = rg_lstati (ls, NREGIONS)
if (nregions <= 1)
return (ERR)
# Determine the type of data to plot.
mtype = 0
switch (rg_lstati(ls, BSALGORITHM)) {
case LS_MEAN:
mtype = LS_MEAN
case LS_MEDIAN:
mtype = LS_MEDIAN
case LS_MODE:
mtype = LS_MODE
default:
}
switch (rg_lstati(ls, BZALGORITHM)) {
case LS_MEAN:
mtype = LS_MEAN
case LS_MEDIAN:
mtype = LS_MEDIAN
case LS_MODE:
mtype = LS_MODE
default:
}
if (mtype <= 0)
return (ERR)
# Allocate working space.
call smark (sp)
call gclear (gd)
# Compute the data.
call salloc (resid, nregions, TY_REAL)
switch (mtype) {
case LS_MEAN:
call altmr (Memr[rg_lstatp(ls,IMEAN)], Memr[resid], nregions,
bscale, bzero)
call asubr (Memr[rg_lstatp(ls,RMEAN)], Memr[resid], Memr[resid],
nregions)
call rg_galimr (Memr[rg_lstatp(ls,IMEAN)],
Memi[rg_lstatp(ls,RDELETE)], nregions, xmin, xmax)
call rg_galimr (Memr[resid], Memi[rg_lstatp(ls,RDELETE)], nregions,
ymin, ymax)
case LS_MEDIAN:
call altmr (Memr[rg_lstatp(ls,IMEDIAN)], Memr[resid], nregions,
bscale, bzero)
call asubr (Memr[rg_lstatp(ls,RMEDIAN)], Memr[resid], Memr[resid],
nregions)
call rg_galimr (Memr[rg_lstatp(ls,IMEDIAN)],
Memi[rg_lstatp(ls,RDELETE)], nregions, xmin, xmax)
call rg_galimr (Memr[resid], Memi[rg_lstatp(ls,RDELETE)], nregions,
ymin, ymax)
case LS_MODE:
call altmr (Memr[rg_lstatp(ls,IMODE)], Memr[resid], nregions,
bscale, bzero)
call asubr (Memr[rg_lstatp(ls,RMODE)], Memr[resid], Memr[resid],
nregions)
call rg_galimr (Memr[rg_lstatp(ls,IMODE)],
Memi[rg_lstatp(ls,RDELETE)], nregions, xmin, xmax)
call rg_galimr (Memr[resid], Memi[rg_lstatp(ls,RDELETE)], nregions,
ymin, ymax)
}
# Compute the data limits.
diff = xmax - xmin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * abs (xmax + xmin) / 2.0)
xmin = xmin - diff * FRACTION
xmax = xmax + diff * FRACTION
diff = ymax - ymin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * abs (ymax + ymin) / 2.0)
ymin = ymin - diff * FRACTION
ymax = ymax + diff * FRACTION
call gswind (gd, xmin, xmax, ymin, ymax)
call salloc (title, 2 * SZ_LINE, TY_CHAR)
call salloc (imager, SZ_FNAME, TY_CHAR)
call salloc (image1, SZ_FNAME, TY_CHAR)
call salloc (str, SZ_LINE, TY_CHAR)
call rg_lstats (ls, REFIMAGE, Memc[imager], SZ_FNAME)
call rg_lstats (ls, IMAGE, Memc[image1], SZ_FNAME)
call sprintf (Memc[str], SZ_LINE,
"Nregions = %d Ref Image = %g * Input Image + %g")
call pargi (nregions)
call pargr (bscale)
call pargr (bzero)
call sprintf (Memc[title], 2 * SZ_LINE,
"Residuals for %s versus Counts for %s\n%s\n")
call pargstr (Memc[imager])
call pargstr (Memc[image1])
call pargstr (Memc[str])
call glabax (gd, Memc[title], "Input Image Counts",
"Residual Counts")
# Plot the data.
switch (mtype) {
case LS_MEAN:
call rg_lxyplot (gd, Memr[rg_lstatp(ls,IMEAN)], Memr[resid],
Memi[rg_lstatp(ls,RDELETE)], udelete, nregions,
GM_BOX, GM_CROSS)
case LS_MEDIAN:
call rg_lxyplot (gd, Memr[rg_lstatp(ls,IMEDIAN)], Memr[resid],
Memi[rg_lstatp(ls,RDELETE)], udelete, nregions,
GM_BOX, GM_CROSS)
case LS_MODE:
call rg_lxyplot (gd, Memr[rg_lstatp(ls,IMODE)], Memr[resid],
Memi[rg_lstatp(ls,RDELETE)], udelete, nregions,
GM_BOX, GM_CROSS)
}
# Plot the residuals 0 line.
call gamove (gd, xmin, 0.0)
call gadraw (gd, xmax, 0.0)
call sfree (sp)
return (OK)
end
# RG_RIFPLOT -- Plot the pixel to pixel fit for a region.
int procedure rg_rifplot (gd, imr, im1, ls, udelete, region)
pointer gd #I pointer to the graphics stream
pointer imr #I pointer to the reference image
pointer im1 #I pointer to the input image
pointer ls #I pointer to the linmatch structure
int udelete[ARB] #I pointer to the user deletions array
int region #I the current region
bool start, finish
int npts
pointer rbuf, ibuf, sp, title, str, imager, image1, resid
real xmin, xmax, ymin, ymax, diff, bscale, bzero, datamin, datamax
real loreject, hireject, chi, dxmin, dxmax, dymin, dymax, x, y
int rg_lstati(), rg_limget()
pointer rg_lstatp()
real rg_lstatr()
begin
# Get the data.
if (imr == NULL || im1 == NULL) {
return (ERR)
} else if (region == rg_lstati (ls,CNREGION) &&
rg_lstatp (ls,RBUF) != NULL && rg_lstatp(ls, IBUF) != NULL) {
rbuf = rg_lstatp (ls, RBUF)
ibuf = rg_lstatp (ls, IBUF)
} else if (rg_limget (ls, imr, im1, region) == OK) {
rbuf = rg_lstatp (ls, RBUF)
ibuf = rg_lstatp (ls, IBUF)
} else {
return (ERR)
}
# Initialize.
call gclear (gd)
# Get some constants
npts = Memi[rg_lstatp(ls,RNPTS)+region-1]
bscale = Memr[rg_lstatp(ls,RBSCALE)+region-1]
bzero = Memr[rg_lstatp(ls,RBZERO)+region-1]
chi = Memr[rg_lstatp(ls,RCHI)+region-1]
if (IS_INDEFR(rg_lstatr(ls,DATAMIN)))
datamin = -MAX_REAL
else
datamin = rg_lstatr (ls,DATAMIN)
if (IS_INDEFR(rg_lstatr(ls,DATAMAX)))
datamax = MAX_REAL
else
datamax = rg_lstatr (ls,DATAMAX)
if (rg_lstati(ls,NREJECT) <= 0 || IS_INDEFR(rg_lstatr(ls,LOREJECT)) ||
IS_INDEFR(chi))
loreject = -MAX_REAL
else
loreject = -rg_lstatr (ls,LOREJECT) * chi
if (rg_lstati(ls,NREJECT) <= 0 || IS_INDEFR(rg_lstatr(ls,HIREJECT)) ||
IS_INDEFR(chi))
hireject = MAX_REAL
else
hireject = rg_lstatr (ls,HIREJECT) * chi
# Compute the plot limits.
call alimr (Memr[ibuf], npts, xmin, xmax)
call alimr (Memr[rbuf], npts, ymin, ymax)
dxmin = xmin
dxmax = xmax
dymin = ymin
dymax = ymax
diff = xmax - xmin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * abs (xmax + xmin) / 2.0)
xmin = xmin - diff * FRACTION
xmax = xmax + diff * FRACTION
diff = ymax - ymin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * abs (ymax + ymin) / 2.0)
ymin = ymin - diff * FRACTION
ymax = ymax + diff * FRACTION
call gswind (gd, xmin, xmax, ymin, ymax)
# Allocate working space.
call smark (sp)
# Create the plot title.
call salloc (title, 2 * SZ_LINE, TY_CHAR)
call salloc (str, SZ_LINE, TY_CHAR)
call salloc (imager, SZ_FNAME, TY_CHAR)
call salloc (image1, SZ_FNAME, TY_CHAR)
call rg_lstats (ls, REFIMAGE, Memc[imager], SZ_FNAME)
call rg_lstats (ls, IMAGE, Memc[image1], SZ_FNAME)
call sprintf (Memc[str], SZ_LINE,
"Region %d%s: Ref Image = %g * Input Image + %g")
call pargi (region)
if (udelete[region] == YES)
call pargstr (" [deleted]")
else if (Memi[rg_lstatp(ls,RDELETE)+region-1] != LS_NO)
call pargstr (" [rejected]")
else
call pargstr ("")
call pargr (bscale)
call pargr (bzero)
call sprintf (Memc[title], 2 * SZ_LINE,
"Counts for Image %s versus Counts for Image %s\n%s\n\n")
call pargstr (Memc[imager])
call pargstr (Memc[image1])
call pargstr (Memc[str])
call glabax (gd, Memc[title], "Input Image Counts",
"Ref image Counts")
# Compute the residuals.
call salloc (resid, npts, TY_REAL)
if (IS_INDEFR(bscale) || IS_INDEFR(bzero))
call amovkr (0.0, Memr[resid], npts)
else {
call altmr (Memr[ibuf], Memr[resid], npts, bscale, bzero)
call asubr (Memr[rbuf], Memr[resid], Memr[resid], npts)
}
# Plot the data.
call rg_riplot (gd, Memr[ibuf], Memr[rbuf], Memr[resid], npts,
datamin, datamax, loreject, hireject, GM_BOX, GM_CROSS)
# Plot the fit if bscale and bzero are defined.
start = false
finish = false
if (! IS_INDEFR(bscale) && ! IS_INDEFR(bzero)) {
y = bscale * dxmin + bzero
if (y >= ymin && y <= ymax) {
call gamove (gd, dxmin, y)
start = true
}
y = bscale * dxmax + bzero
if (y >= ymin && y <= ymax) {
if (start) {
call gadraw (gd, dxmax, y)
finish = true
} else {
call gamove (gd, dxmax, y)
start = true
}
}
x = (dymin - bzero) / bscale
if (x >= xmin && x <= xmax) {
if (! start) {
call gamove (gd, x, dymin)
start = true
} else if (! finish) {
call gadraw (gd, x, dymin)
finish = true
}
}
x = (dymax - bzero) / bscale
if (x >= xmin && x <= xmax) {
if (! start) {
call gamove (gd, x, dymax)
start = true
} else if (! finish) {
call gadraw (gd, x, dymax)
finish = true
}
}
}
call sfree (sp)
return (OK)
end
# RG_RIRPLOT -- Plot the pixel to pixel fit residuals for a region.
int procedure rg_rirplot (gd, imr, im1, ls, udelete, region)
pointer gd #I pointer to the graphics stream
pointer imr #I pointer to the reference image
pointer im1 #I pointer to the input image
pointer ls #I pointer to the linmatch structure
int udelete[ARB] #I pointer to the user deletions array
int region #I the current region
int npts
pointer rbuf, ibuf, sp, title, str, imager, image1, resid
real xmin, xmax, ymin, ymax, diff, bscale, bzero, datamin, datamax
real loreject, hireject, chi
int rg_lstati(), rg_limget()
pointer rg_lstatp()
real rg_lstatr()
begin
# Get the data.
if (imr == NULL || im1 == NULL) {
return (ERR)
} else if (region == rg_lstati (ls,CNREGION) &&
rg_lstatp (ls,RBUF) != NULL && rg_lstatp(ls, IBUF) != NULL) {
rbuf = rg_lstatp (ls, RBUF)
ibuf = rg_lstatp (ls, IBUF)
} else if (rg_limget (ls, imr, im1, region) == OK) {
rbuf = rg_lstatp (ls, RBUF)
ibuf = rg_lstatp (ls, IBUF)
} else {
return (ERR)
}
# Initialize.
call gclear (gd)
# Get some constants
npts = Memi[rg_lstatp(ls,RNPTS)+region-1]
bscale = Memr[rg_lstatp(ls,RBSCALE)+region-1]
bzero = Memr[rg_lstatp(ls,RBZERO)+region-1]
chi = Memr[rg_lstatp(ls,RCHI)+region-1]
if (IS_INDEFR(rg_lstatr(ls,DATAMIN)))
datamin = -MAX_REAL
else
datamin = rg_lstatr (ls,DATAMIN)
if (IS_INDEFR(rg_lstatr(ls,DATAMAX)))
datamax = MAX_REAL
else
datamax = rg_lstatr (ls,DATAMAX)
if (rg_lstati(ls,NREJECT) <= 0 || IS_INDEFR(rg_lstatr(ls,LOREJECT)) ||
IS_INDEFR(chi))
loreject = -MAX_REAL
else
loreject = -rg_lstatr (ls,LOREJECT) * chi
if (rg_lstati(ls,NREJECT) <= 0 || IS_INDEFR(rg_lstatr(ls,HIREJECT)) ||
IS_INDEFR(chi))
hireject = MAX_REAL
else
hireject = rg_lstatr (ls,HIREJECT) * chi
# Allocate working space.
call smark (sp)
# Compute the residuals.
call salloc (resid, npts, TY_REAL)
if (IS_INDEFR(bscale) || IS_INDEFR(bzero))
call amovkr (INDEFR, Memr[resid], npts)
else {
call altmr (Memr[ibuf], Memr[resid], npts, bscale, bzero)
call asubr (Memr[rbuf], Memr[resid], Memr[resid], npts)
}
# Compute the plot limits.
call alimr (Memr[ibuf], npts, xmin, xmax)
call alimr (Memr[resid], npts, ymin, ymax)
diff = xmax - xmin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * abs (xmin + xmax) / 2.0)
xmin = xmin - diff * FRACTION
xmax = xmax + diff * FRACTION
diff = ymax - ymin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * abs (ymin + ymax) / 2.0)
ymin = ymin - diff * FRACTION
ymax = ymax + diff * FRACTION
call gswind (gd, xmin, xmax, ymin, ymax)
# Create the plot title.
call salloc (title, 2 * SZ_LINE, TY_CHAR)
call salloc (str, SZ_LINE, TY_CHAR)
call salloc (imager, SZ_FNAME, TY_CHAR)
call salloc (image1, SZ_FNAME, TY_CHAR)
# Create the plot title.
call rg_lstats (ls, REFIMAGE, Memc[imager], SZ_FNAME)
call rg_lstats (ls, IMAGE, Memc[image1], SZ_FNAME)
call sprintf (Memc[str], SZ_LINE,
"Region %d%s: Ref Image = %g * Input Image + %g")
call pargi (region)
if (udelete[region] == YES)
call pargstr (" [deleted]")
else if (Memi[rg_lstatp(ls,RDELETE)+region-1] != LS_NO)
call pargstr (" [rejected]")
else
call pargstr ("")
call pargr (bscale)
call pargr (bzero)
call sprintf (Memc[title], 2 * SZ_LINE,
"Residuals for Image %s versus Counts for Image %s\n%s\n\n")
call pargstr (Memc[imager])
call pargstr (Memc[image1])
call pargstr (Memc[str])
call glabax (gd, Memc[title], "Input Image Counts",
"Ref image Counts")
# Plot the data.
call rg_rriplot (gd, Memr[ibuf], Memr[rbuf], Memr[resid], npts,
datamin, datamax, loreject, hireject, GM_BOX, GM_CROSS)
# Plot the 0 line if bscale and bzero are defined.
if ( ! IS_INDEFR(bscale) && ! IS_INDEFR(bzero)) {
call gamove (gd, xmin, 0.0)
call gadraw (gd, xmax, 0.0)
}
call sfree (sp)
return (OK)
end
# RG_BZFPLOT -- Plot the bscale and bzero values computed from the
# fit algorithm.
int procedure rg_bzfplot (gd, ls, udelete, bscale, bzero)
pointer gd #I pointer to the graphics stream
pointer ls #I pointer to the linmatch structure
int udelete[ARB] #I the user deletions array
real bscale #I the fitted bscale value
real bzero #I the fitted bzero value
int i, nregions
pointer sp, xreg, title, str, imager, image1
real xmin, xmax, ymin, ymax, diff
int rg_lstati()
pointer rg_lstatp()
begin
nregions = rg_lstati (ls, NREGIONS)
if (nregions <= 1)
return (ERR)
# Allocate working space.
call smark (sp)
# Set up space and info the plot title.
call salloc (title, 2 * SZ_LINE, TY_CHAR)
call salloc (str, SZ_LINE, TY_CHAR)
call salloc (imager, SZ_FNAME, TY_CHAR)
call salloc (image1, SZ_FNAME, TY_CHAR)
call rg_lstats (ls, REFIMAGE, Memc[imager], SZ_FNAME)
if (rg_lstati(ls,BSALGORITHM) == LS_PHOTOMETRY ||
rg_lstati(ls,BZALGORITHM) == LS_PHOTOMETRY)
call rg_lstats (ls, PHOTFILE, Memc[image1], SZ_FNAME)
else
call rg_lstats (ls, IMAGE, Memc[image1], SZ_FNAME)
# Set the x array.
call salloc (xreg, nregions, TY_REAL)
do i = 1, nregions
Memr[xreg+i-1] = i
xmin = 1.0 - FRACTION * (nregions - 1)
xmax = nregions + FRACTION * (nregions - 1)
call gclear (gd)
# Determine the limits of bscale versus region.
call alimr (Memr[rg_lstatp(ls,RBSCALE)], nregions, ymin, ymax)
diff = ymax - ymin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * (ymax + ymin) / 2.0)
ymin = ymin - FRACTION * diff
ymax = ymax + FRACTION * diff
call gseti (gd, G_WCS, 1)
call gsview (gd, 0.15, 0.9, 0.6, 0.9)
call gswind (gd, xmin, xmax, ymin, ymax)
call rg_pfill (gd, xmin, xmax, ymin, ymax, GF_SOLID, 0)
# Create the title for bscale versus region.
call sprintf (Memc[str], SZ_LINE,
"Reference: %s Input: %s Bscale: %g")
call pargstr (Memc[imager])
call pargstr (Memc[image1])
call pargr (bscale)
call sprintf (Memc[title], 2 * SZ_LINE,
"Bscale vs. Region\n%s\n")
call pargstr (Memc[str])
call glabax (gd, Memc[title], "Region", "Bscale")
# Plot the points.
call rg_lxyplot (gd, Memr[xreg], Memr[rg_lstatp(ls,RBSCALE)],
Memi[rg_lstatp(ls,RDELETE)], udelete, nregions, GM_BOX, GM_CROSS)
# Plot the fit.
call gamove (gd, xmin, bscale)
call gadraw (gd, xmax, bscale)
# Determine the limits of bzero versus region.
call alimr (Memr[rg_lstatp(ls,RBZERO)], nregions, ymin, ymax)
diff = ymax - ymin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * abs (ymin + ymax) / 2.0)
ymin = ymin - FRACTION * diff
ymax = ymax + FRACTION * diff
call gseti (gd, G_WCS, 2)
call gsview (gd, 0.15, 0.9, 0.1, 0.4)
call gswind (gd, xmin, xmax, ymin, ymax)
call rg_pfill (gd, xmin, xmax, ymin, ymax, GF_SOLID, 0)
# Create the title for bzero versus region.
call sprintf (Memc[str], SZ_LINE,
"Reference: %s Input: %s Bzero: %g")
call pargstr (Memc[imager])
call pargstr (Memc[image1])
call pargr (bzero)
call sprintf (Memc[title], 2 * SZ_LINE, "Bzero vs. Region\n%s\n")
call pargstr (Memc[str])
call glabax (gd, Memc[title], "Region", "Bzero")
# Plot the points.
call rg_lxyplot (gd, Memr[xreg], Memr[rg_lstatp(ls,RBZERO)],
Memi[rg_lstatp(ls,RDELETE)], udelete, nregions, GM_BOX, GM_CROSS)
# Plot the fit.
call gamove (gd, xmin, bzero)
call gadraw (gd, xmax, bzero)
call sfree (sp)
return (OK)
end
# RG_BZRPLOT -- Plot the bscale and bzero values computed from the
# fit algorithm.
int procedure rg_bzrplot (gd, ls, udelete, bscale, bzero)
pointer gd #I pointer to the graphics stream
pointer ls #I pointer to the linmatch structure
int udelete[ARB] #I the user deletions array
real bscale #I the fitted bscale value
real bzero #I the fitted bzero value
int i, nregions
pointer sp, xreg, yreg, title, str, imager, image1
real xmin, xmax, ymin, ymax, diff
int rg_lstati()
pointer rg_lstatp()
begin
nregions = rg_lstati (ls, NREGIONS)
if (nregions <= 1)
return (ERR)
# Allocate working space.
call smark (sp)
call salloc (xreg, nregions, TY_REAL)
call salloc (yreg, nregions, TY_REAL)
# Set up space and info the plot title.
call salloc (title, 2 * SZ_LINE, TY_CHAR)
call salloc (str, SZ_LINE, TY_CHAR)
call salloc (imager, SZ_FNAME, TY_CHAR)
call salloc (image1, SZ_FNAME, TY_CHAR)
call rg_lstats (ls, REFIMAGE, Memc[imager], SZ_FNAME)
if (rg_lstati(ls,BSALGORITHM) == LS_PHOTOMETRY ||
rg_lstati(ls,BZALGORITHM) == LS_PHOTOMETRY)
call rg_lstats (ls, PHOTFILE, Memc[image1], SZ_FNAME)
else
call rg_lstats (ls, IMAGE, Memc[image1], SZ_FNAME)
# Set the x array.
do i = 1, nregions
Memr[xreg+i-1] = i
xmin = 1.0 - FRACTION * (nregions - 1)
xmax = nregions + FRACTION * (nregions - 1)
call gclear (gd)
# Determine the limits of the bscale value versus region.
call asubkr (Memr[rg_lstatp(ls,RBSCALE)], bscale, Memr[yreg], nregions)
call alimr (Memr[yreg], nregions, ymin, ymax)
diff = ymax - ymin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * (ymax + ymin) / 2.0)
ymin = ymin - FRACTION * diff
ymax = ymax + FRACTION * diff
call gseti (gd, G_WCS, 1)
call gsview (gd, 0.15, 0.9, 0.6, 0.9)
call gswind (gd, xmin, xmax, ymin, ymax)
call rg_pfill (gd, xmin, xmax, ymin, ymax, GF_SOLID, 0)
# Create the title for bscale versus region.
call sprintf (Memc[str], SZ_LINE,
"Reference: %s Input: %s Bscale: %g")
call pargstr (Memc[imager])
call pargstr (Memc[image1])
call pargr (bscale)
call sprintf (Memc[title], 2 * SZ_LINE,
"Bscale Residuals vs. Region\n%s\n")
call pargstr (Memc[str])
call glabax (gd, Memc[title], "Region", "Bscale Residuals")
# Plot the points.
call rg_lxyplot (gd, Memr[xreg], Memr[yreg], Memi[rg_lstatp(ls,
RDELETE)], udelete, nregions, GM_BOX, GM_CROSS)
# Plot the fit.
call gamove (gd, xmin, 0.0)
call gadraw (gd, xmax, 0.0)
# Determine the limits of the bscale value versus region.
call asubkr (Memr[rg_lstatp(ls,RBZERO)], bzero, Memr[yreg], nregions)
call alimr (Memr[yreg], nregions, ymin, ymax)
diff = ymax - ymin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * (ymax + ymin) / 2.0)
ymin = ymin - FRACTION * diff
ymax = ymax + FRACTION * diff
call gseti (gd, G_WCS, 2)
call gsview (gd, 0.15, 0.9, 0.1, 0.4)
call gswind (gd, xmin, xmax, ymin, ymax)
call rg_pfill (gd, xmin, xmax, ymin, ymax, GF_SOLID, 0)
# Create the title for bzero versus region.
call sprintf (Memc[str], SZ_LINE,
"Reference: %s Input: %s Bzero: %g")
call pargstr (Memc[imager])
call pargstr (Memc[image1])
call pargr (bzero)
call sprintf (Memc[title], 2 * SZ_LINE,
"Bzero Residuals vs. Region\n%s\n")
call pargstr (Memc[str])
call glabax (gd, Memc[title], "Region", "Bzero Residuals")
# Plot the points.
call rg_lxyplot (gd, Memr[xreg], Memr[yreg], Memi[rg_lstatp(ls,
RDELETE)], udelete, nregions, GM_BOX, GM_CROSS)
# Plot the fit.
call gamove (gd, xmin, 0.0)
call gadraw (gd, xmax, 0.0)
call sfree (sp)
return (OK)
end
# RG_MSFPLOT -- Plot the magnitude and sky values of the regions.
int procedure rg_msfplot (gd, ls, udelete, bscale, bzero)
pointer gd #I pointer to the graphics stream
pointer ls #I pointer to the linmatch structure
int udelete[ARB] #I the user deletions array
real bscale #I the fitted bscale value
real bzero #I the fitted bzero value
bool start, finish
int nregions
pointer sp, title, str, imager, image1
real xmin, xmax, ymin, ymax, diff, dxmin, dxmax, dymin, dymax, x, y
int rg_lstati()
pointer rg_lstatp()
begin
nregions = rg_lstati (ls, NREGIONS)
if (nregions <= 0)
return (ERR)
# Allocate working space.
call smark (sp)
call salloc (title, 2 * SZ_LINE, TY_CHAR)
call salloc (str, SZ_LINE, TY_CHAR)
call salloc (imager, SZ_FNAME, TY_CHAR)
call salloc (image1, SZ_FNAME, TY_CHAR)
call rg_lstats (ls, REFIMAGE, Memc[imager], SZ_FNAME)
call rg_lstats (ls, PHOTFILE, Memc[image1], SZ_FNAME)
call gclear (gd)
# Determine the limits of the bscale value versus region.
call alimr (Memr[rg_lstatp(ls,IMAG)], nregions, xmin, xmax)
dxmin = xmin
dxmax = xmax
diff = xmax - xmin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * (xmax + xmin) / 2.0)
xmin = xmin - FRACTION * diff
xmax = xmax + FRACTION * diff
call alimr (Memr[rg_lstatp(ls,RMAG)], nregions, ymin, ymax)
dymin = ymin
dymax = ymax
diff = ymax - ymin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * (ymax + ymin) / 2.0)
ymin = ymin - FRACTION * diff
ymax = ymax + FRACTION * diff
call gseti (gd, G_WCS, 1)
call gsview (gd, 0.15, 0.9, 0.6, 0.9)
call gswind (gd, xmin, xmax, ymin, ymax)
call rg_pfill (gd, xmin, xmax, ymin, ymax, GF_SOLID, 0)
# Create the title for bscale versus region.
call sprintf (Memc[str], SZ_LINE,
"Reference magnitudes = Input magnitudes + %0.3f")
call pargr (-2.5 * log10 (bscale))
call sprintf (Memc[title], 2 * SZ_LINE,
"Magnitudes for %s vs. Magnitudes for %s\n%s\n")
call pargstr (Memc[imager])
call pargstr (Memc[image1])
call pargstr (Memc[str])
call glabax (gd, Memc[title], "Input Magnitudes",
"Ref Magnitudes")
# Plot the points.
call rg_lxyplot (gd, Memr[rg_lstatp(ls,IMAG)], Memr[rg_lstatp(ls,RMAG)],
Memi[rg_lstatp(ls, RDELETE)], udelete, nregions, GM_BOX, GM_CROSS)
# Plot the fit.
if (bscale > 0.0) {
call gamove (gd, dxmin, dxmin - 2.5 * log10(bscale))
call gadraw (gd, dxmax, dxmax - 2.5 * log10(bscale))
}
# Determine the limits of the bscale value versus region.
call alimr (Memr[rg_lstatp(ls,ISKY)], nregions, xmin, xmax)
dxmin = xmin
dxmax = xmax
diff = xmax - xmin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * (xmax + xmin) / 2.0)
xmin = xmin - FRACTION * diff
xmax = xmax + FRACTION * diff
call alimr (Memr[rg_lstatp(ls,RSKY)], nregions, ymin, ymax)
dymin = ymin
dymax = ymax
diff = ymax - ymin
if (diff <= 0.0)
diff = 0.0
else
diff = max (diff, MINFRACTION * (ymax + ymin) / 2.0)
ymin = ymin - FRACTION * diff
ymax = ymax + FRACTION * diff
call gseti (gd, G_WCS, 2)
call gsview (gd, 0.15, 0.9, 0.1, 0.4)
call gswind (gd, xmin, xmax, ymin, ymax)
call rg_pfill (gd, xmin, xmax, ymin, ymax, GF_SOLID, 0)
# Create the title for bscale versus region.
call sprintf (Memc[str], SZ_LINE,
"Reference skies = %g * Input skies + %g")
call pargr (bscale)
call pargr (bzero)
call sprintf (Memc[title], 2 * SZ_LINE,
"Sky Values for %s vs. Sky Values for %s\n%s\n")
call pargstr (Memc[imager])
call pargstr (Memc[image1])
call pargstr (Memc[str])
call glabax (gd, Memc[title], "Input Sky Values",
"Ref Sky Values")
# Plot the points.
call rg_lxyplot (gd, Memr[rg_lstatp(ls,ISKY)], Memr[rg_lstatp(ls,RSKY)],
Memi[rg_lstatp(ls, RDELETE)], udelete, nregions, GM_BOX, GM_CROSS)
# Plot the fit.
start = false
finish = false
if (! IS_INDEFR(bscale) && ! IS_INDEFR(bzero)) {
y = bscale * dxmin + bzero
if (y >= ymin && y <= ymax) {
call gamove (gd, dxmin, y)
start = true
}
y = bscale * dxmax + bzero
if (y >= ymin && y <= ymax) {
if (start) {
call gadraw (gd, dxmax, y)
finish = true
} else {
call gamove (gd, dxmax, y)
start = true
}
}
x = (dymin - bzero) / bscale
if (x >= xmin && x <= xmax) {
if (! start) {
call gamove (gd, x, dymin)
start = true
} else if (! finish) {
call gadraw (gd, x, dymin)
finish = true
}
}
x = (dymax - bzero) / bscale
if (x >= xmin && x <= xmax) {
if (! start) {
call gamove (gd, x, dymax)
start = true
} else if (! finish) {
call gadraw (gd, x, dymax)
finish = true
}
}
}
call sfree (sp)
return (OK)
end
# RG_MSRPLOT -- Plot the magnitude and sky values of the regions.
int procedure rg_msrplot (gd, ls, udelete, bscale, bzero)
pointer gd #I pointer to the graphics stream
pointer ls #I pointer to the linmatch structure
int udelete[ARB] #I the user deletions array
real bscale #I the fitted bscale value
real bzero #I the fitted bzero value
int nregions
pointer sp, yreg, title, str, imager, image1
real xmin, xmax, ymin, ymax, diff, dmin, dmax
int rg_lstati()
pointer rg_lstatp()
begin
nregions = rg_lstati (ls, NREGIONS)
if (nregions <= 0)
return (ERR)
# Allocate working space.
call smark (sp)
call salloc (yreg, nregions, TY_REAL)
call salloc (title, 2 * SZ_LINE, TY_CHAR)
call salloc (str, SZ_LINE, TY_CHAR)
call salloc (imager, SZ_FNAME, TY_CHAR)
call salloc (image1, SZ_FNAME, TY_CHAR)
call rg_lstats (ls, REFIMAGE, Memc[imager], SZ_FNAME)
call rg_lstats (ls, PHOTFILE, Memc[image1], SZ_FNAME)
call gclear (gd)
# Determine the limits of the bscale value versus region.
call alimr (Memr[rg_lstatp(ls,IMAG)], nregions, xmin, xmax)
diff = xmax - xmin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * (xmax + xmin) / 2.0)
dmin = xmin
dmax = xmax
xmin = xmin - FRACTION * diff
xmax = xmax + FRACTION * diff
if (bscale > 0) {
call aaddkr (Memr[rg_lstatp(ls,IMAG)], -2.5*log10(bscale),
Memr[yreg], nregions)
call asubr (Memr[rg_lstatp(ls,RMAG)], Memr[yreg], Memr[yreg],
nregions)
} else
call asubr (Memr[rg_lstatp(ls,RMAG)], Memr[rg_lstatp(ls,IMAG)],
Memr[yreg], nregions)
call alimr (Memr[yreg], nregions, ymin, ymax)
diff = ymax - ymin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * (ymax + ymin) / 2.0)
ymin = ymin - FRACTION * diff
ymax = ymax + FRACTION * diff
call gseti (gd, G_WCS, 1)
call gsview (gd, 0.15, 0.9, 0.6, 0.9)
call gswind (gd, xmin, xmax, ymin, ymax)
call rg_pfill (gd, xmin, xmax, ymin, ymax, GF_SOLID, 0)
# Create the title for bscale versus region.
call sprintf (Memc[str], SZ_LINE,
"Reference: %s Input: %s Bscale: %g")
call pargstr (Memc[imager])
call pargstr (Memc[image1])
call pargr (bscale)
call sprintf (Memc[title], 2 * SZ_LINE,
"Residuals for %s vs. Magnitudes for %s\n%s\n")
call pargstr (Memc[imager])
call pargstr (Memc[image1])
call pargstr (Memc[str])
call glabax (gd, Memc[title], "Input Magnitudes",
"Mag Residuals")
# Plot the points.
call rg_lxyplot (gd, Memr[rg_lstatp(ls,IMAG)], Memr[yreg],
Memi[rg_lstatp(ls, RDELETE)], udelete, nregions, GM_BOX, GM_CROSS)
# Plot the fit.
if (bscale > 0.0) {
call gamove (gd, xmin, 0.0)
call gadraw (gd, xmax, 0.0)
}
# Determine the limits of the bscale value versus region.
call alimr (Memr[rg_lstatp(ls,ISKY)], nregions, xmin, xmax)
diff = xmax - xmin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * (xmax + xmin) / 2.0)
dmin = xmin
dmax = xmax
xmin = xmin - FRACTION * diff
xmax = xmax + FRACTION * diff
call altmr (Memr[rg_lstatp(ls,ISKY)], Memr[yreg], nregions,
bscale, bzero)
call asubr (Memr[rg_lstatp(ls,RSKY)], Memr[yreg], Memr[yreg],
nregions)
call alimr (Memr[yreg], nregions, ymin, ymax)
diff = ymax - ymin
if (diff <= 0.0)
diff = MINFRACTION
else
diff = max (diff, MINFRACTION * (ymax + ymin) / 2.0)
ymin = ymin - FRACTION * diff
ymax = ymax + FRACTION * diff
call gseti (gd, G_WCS, 2)
call gsview (gd, 0.15, 0.9, 0.1, 0.4)
call gswind (gd, xmin, xmax, ymin, ymax)
call rg_pfill (gd, xmin, xmax, ymin, ymax, GF_SOLID, 0)
# Create the title for bscale versus region.
call sprintf (Memc[str], SZ_LINE,
"Reference: %s Input: %s Bscale: %g Bzero: %g")
call pargstr (Memc[imager])
call pargstr (Memc[image1])
call pargr (bscale)
call pargr (bzero)
call sprintf (Memc[title], 2 * SZ_LINE,
"Residuals for %s vs. Sky Values for %s\n%s\n")
call pargstr (Memc[imager])
call pargstr (Memc[image1])
call pargstr (Memc[str])
call glabax (gd, Memc[title], "Input Sky Values",
"Sky Residuals")
# Plot the points.
call rg_lxyplot (gd, Memr[rg_lstatp(ls,ISKY)], Memr[yreg],
Memi[rg_lstatp(ls, RDELETE)], udelete, nregions, GM_BOX, GM_CROSS)
# Plot the fit.
call gamove (gd, xmin, 0.0)
call gadraw (gd, xmax, 0.0)
call sfree (sp)
return (OK)
end
# RG_LHBOX -- Draw a stepped curve of the histogram data.
procedure rg_lhbox (gp, ydata, npts, x1, x2)
pointer gp #I the graphics descriptor
real ydata[ARB] #I the y coordinates of the line endpoints
int npts #I the number of line endpoints
real x1, x2 #I starting and ending x coordinates
int pixel
real left, right, top, bottom, x, y, dx
begin
call ggwind (gp, left, right, bottom, top)
dx = (x2 - x1) / npts
# Do the first vertical line.
call gamove (gp, x1, bottom)
call gadraw (gp, x1, ydata[1])
# Do the first horizontal line.
call gadraw (gp, x1 + dx, ydata[1])
# Draw the remaining horizontal lines.
do pixel = 2, npts {
x = x1 + dx * (pixel - 1)
y = ydata[pixel]
call gadraw (gp, x, y)
call gadraw (gp, x + dx, y)
}
# Draw the last vertical line.
call gadraw (gp, x + dx, bottom)
end
# RG_PFILL -- Fill a rectangular area with a given style and color.
procedure rg_pfill (gd, xmin, xmax, ymin, ymax, fstyle, fcolor)
pointer gd #I pointer to the graphics stream
real xmin, xmax #I the x coordinate limits
real ymin, ymax #I the y coordinate limits
int fstyle #I the fill style
int fcolor #I the fill color
real x[4], y[4]
begin
call gseti (gd, G_FACOLOR, fcolor)
x[1] = xmin; y[1] = ymin
x[2] = xmax; y[2] = ymin
x[3] = xmax; y[3] = ymax
x[4] = xmin; y[4] = ymax
call gfill (gd, x, y, 4, fstyle)
end
# XP_LXYPLOT -- Plot the x and y points.
procedure rg_lxyplot (gd, x, y, del, udel, npts, gmarker, dmarker)
pointer gd # pointer to the graphics stream
real x[ARB] # the x coordinates
real y[ARB] # the y coordinates
int del[ARB] # the deletions array
int udel[ARB] # the user deletions array
int npts # the number of points to be marked
int gmarker # the good point marker type
int dmarker # the deleted point marker type
int i
begin
# Plot the points.
do i = 1, npts {
if (udel[i] == YES) {
call gmark (gd, x[i], y[i], gmarker, 2.0, 2.0)
call gmark (gd, x[i], y[i], dmarker, 2.0, 2.0)
} else if (del[i] != LS_NO)
call gmark (gd, x[i], y[i], dmarker, 2.0, 2.0)
else
call gmark (gd, x[i], y[i], gmarker, 2.0, 2.0)
}
end
# XP_RIPLOT -- Plot the reference image intensity versus the input image
# intensity.
procedure rg_riplot (gd, x, y, resid, npts, datamin, datamax, loreject,
hireject, gmarker, dmarker)
pointer gd #I pointer to the graphics stream
real x[ARB] #I the x coordinates
real y[ARB] #I the y coordinates
real resid[ARB] #I the residuals array
int npts #I the number of points to be marked
real datamin #I the good data minimum
real datamax #I the good data maximum
real loreject #I the low side rejection limit
real hireject #I the high side rejection limit
int gmarker #I the good point marker type
int dmarker #I the deleted point marker type
int i
begin
do i = 1, npts {
if (x[i] < datamin || x[i] > datamax)
call gmark (gd, x[i], y[i], dmarker, 2.0, 2.0)
else if (y[i] < datamin || y[i] > datamax)
call gmark (gd, x[i], y[i], dmarker, 2.0, 2.0)
else if (resid[i] < loreject || resid[i] > hireject)
call gmark (gd, x[i], y[i], dmarker, 2.0, 2.0)
else
call gmark (gd, x[i], y[i], gmarker, 2.0, 2.0)
}
end
# XP_RRIPLOT -- Plot the reference image intensity versus the input image
# intensity.
procedure rg_rriplot (gd, x, y, resid, npts, datamin, datamax, loreject,
hireject, gmarker, dmarker)
pointer gd #I pointer to the graphics stream
real x[ARB] #I the x coordinates
real y[ARB] #I the y coordinates
real resid[ARB] #I the residuals array
int npts #I the number of points to be marked
real datamin #I the good data minimum
real datamax #I the good data maximum
real loreject #I the low side rejection limit
real hireject #I the high side rejection limit
int gmarker #I the good point marker type
int dmarker #I the deleted point marker type
int i
begin
do i = 1, npts {
if (x[i] < datamin || x[i] > datamax)
call gmark (gd, x[i], resid[i], dmarker, 2.0, 2.0)
else if (y[i] < datamin || y[i] > datamax)
call gmark (gd, x[i], resid[i], dmarker, 2.0, 2.0)
else if (IS_INDEFR(resid[i]))
call gmark (gd, x[i], resid[i], dmarker, 2.0, 2.0)
else if (resid[i] < loreject || resid[i] > hireject)
call gmark (gd, x[i], resid[i], dmarker, 2.0, 2.0)
else
call gmark (gd, x[i], resid[i], gmarker, 2.0, 2.0)
}
end
# RG_GALIMR -- Compute the good data limits for the plot.
procedure rg_galimr (a, index, npts, amin, amax)
real a[ARB] #I the input array
int index[ARB] #I the index array
int npts #I the size of the array
real amin, amax #O the output min and max values
int i
real dmin, dmax, gmin, gmax
begin
dmin = a[1]; dmax = a[1]
gmin = MAX_REAL; gmax = -MAX_REAL
do i = 1, npts {
if (a[i] < dmin)
dmin = a[i]
else if (a[i] > dmax)
dmax = a[i]
if (index[i] == LS_NO) {
if (a[i] < gmin)
gmin = a[i]
if (a[i] > gmax)
gmax = a[i]
}
}
if (gmin == MAX_REAL)
amin = dmin
else
amin = gmin
if (gmax == -MAX_REAL)
amax = dmax
else
amax = gmax
end
|