aboutsummaryrefslogtreecommitdiff
path: root/noao/rv/coloncmds.x
blob: d5ff10e178261f902a98fbc1c798a0d6ee17e994 (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
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
include <ctype.h>
include <fset.h>
include <error.h>
include "rvpackage.h"
include "rvflags.h"
include "rvcont.h"
include "rvsample.h"

# COLON_CMDS  -  Utility file for common colon commands.  Usually, just 
# routines to get/set parameter values.  Task specific stuff is left in
# the appropriate colon command source file.


# CMD_ADD_COMMENT - Add a comment to the output logs.

procedure cmd_add_comment (rv)

pointer	rv					#I RV struct pointer

pointer	sp, buf
int 	i
char	c

begin
	if (RV_TXFD(rv) == NULL) {
	    call rv_errmsg ("No output log yet opened.")
	    return
	}

	call smark (sp)
	call salloc (buf, SZ_LINE, TY_CHAR)

	# Now read the line and build up the buffer.
	call scanc (c)
	if (c == '\n' || c == EOS) {
	    call rv_errmsg ("Usage: ':comment <string>'")
	    call sfree (sp)
	    return
	} else {
	    i = 0
	    while (c != '\n' && c != EOS && i < SZ_LINE) {
		Memc[buf+i] = c
		i = i + 1
		call scanc (c)
	    }
	    Memc[buf+i] = '\0'
	    call fprintf (RV_TXFD(rv), "#   %s\n")
		call pargstr (Memc[buf])
	}

	call sfree (sp)
end


# CMD_APLIST - Set/Show the aperture list to process.

procedure cmd_aplist (rv, written)

pointer	rv					#I RV struct pointer
bool	written					#I Data write flag

pointer	sp, buf
int	stat, rv_apnum_range()
errchk	realloc

begin
	call smark (sp)
	call salloc (buf, SZ_LINE, TY_CHAR)

	call gargstr (Memc[buf], SZ_FNAME)
	if (Memc[buf] != EOS) {
	    call rv_do_save (rv, written)
	    stat = rv_apnum_range (rv, Memc[buf+1])
	} else {
	    call printf ("Aperture list = `%s'")
		call pargstr (APPARAM(rv))
	}

	call sfree (sp)
end


# CMD_APNUM - Get/Set the APNUM.

procedure cmd_apnum (rv, written)

pointer	rv					#I RV struct pointer
bool	written					#I Data write flag

int	i, ival, found
int	rv_getim(), nscan()

begin
	call gargi (ival)
	if (nscan() == 2) {
	    found = NO				# position the aplist pointer
	    do i = 1, NUMAPS(rv) {
		if (ival == APLIST(rv,i)) {
		    CURAPNUM(rv) = i
		    found = YES
		}
	    }
	    if (found == NO) {			# check if it's legal
		call rv_errmsg (
		   "Apnum not in current list. Reset list with `:apertures'")
		return
	    }
	    call rv_do_save (rv, written)
	    RV_APNUM(rv) = ival
	} else {
	    call printf ("APNUM = %d")
	        call pargi (RV_APNUM(rv))
	    return
	}

	# Get the new apertures.
	OBJCONT(rv) = NO
	IS_DBLSTAR(rv) = NO
	#SR_COUNT(RV_OSAMPLE(rv)) = ALL_SPECTRUM
	#SR_COUNT(RV_RSAMPLE(rv)) = ALL_SPECTRUM
	if (rv_getim(rv, IMAGE(rv), OBJECT_SPECTRUM, INDEF, INDEF, INDEFI) ==
	    ERR_READ)
	        return
	REFCONT(rv) = NO
	if (rv_getim(rv, RIMAGE(rv), REFER_SPECTRUM, INDEF, INDEF, INDEFI) == 
	    ERR_READ)
	        return

	RV_NEWXCOR(rv) = YES
end


# CMD_APODIZE - Get/Set the apodize percentage.

procedure cmd_apodize (rv)

pointer	rv					#I RV struct pointer

real	rval
int	nscan()

begin
	call gargr (rval)
	if (nscan() == 2) {
	    RV_APODIZE(rv) = rval
	    RV_NEWXCOR(rv) = YES
	} else {
	    call printf ("Apodize percentage = %g")
	        call pargr (RV_APODIZE(rv))
	}
end


# CMD_AUTODRAW - Set/Show the autodraw flag.

procedure cmd_autodraw (rv)

pointer	rv					#I RV struct pointer

bool	bval, itob()
int	nscan(), btoi()

begin
	call gargb (bval)
	if (nscan() == 2) {
	    RV_AUTODRAW(rv) = btoi (bval)
	} else {
	    call printf ("autodraw = `%b'")
	        call pargb (itob(RV_AUTODRAW(rv)))
	}
end


# CMD_AUTOWRITE - Set/Show the autowrite flag.

procedure cmd_autowrite (rv)

pointer	rv					#I RV struct pointer

bool	bval, itob()
int	nscan(), btoi()

begin
	call gargb (bval)
	if (nscan() == 2) {
	    RV_AUTOWRITE(rv) = btoi (bval)
	} else {
	    call printf ("autowrite = `%b'")
	        call pargb (itob(RV_AUTOWRITE(rv)))
	}
end


# CMD_BACKGROUND - Set/Show the fitting background.

procedure cmd_background (rv)

pointer	rv					#I RV struct pointer

real	rval
int	nscan()

begin
	call gargr (rval)
	if (nscan() == 2) {
	    call rv_erase_fit (rv, false)
	    RV_BACKGROUND(rv) = rval
	    RV_FITDONE(rv) = NO
	} else {
	    call printf ("Background = %g")
	        call pargr (RV_BACKGROUND(rv))
	}
end


# CMD_CONT - Do the continuum normalization.

procedure cmd_cont (rv)

pointer	rv					#I RV struct pointer

pointer	sp, cmd
int	stat, spc_cursor()

begin
	call smark (sp)
	call salloc (cmd, SZ_FNAME, TY_CHAR)

	call gargstr (Memc[cmd], SZ_FNAME)
	if (Memc[cmd] == EOS) {
	    # The default action (i.e. command is ":cont") is to do
	    # the continuum fitting from both the current bin spectrum
	    # and the current template spectrum.
	    call do_continuum (rv, OBJECT_SPECTRUM)
	    RV_GTYPE(rv) = NORM_PLOT
	    if (RV_CONTINUUM(rv) == TEMP_ONLY || RV_CONTINUUM(rv) == BOTH)
	        call do_continuum (rv, REFER_SPECTRUM)

	} else {
	    # Now parse the argument to find out what to do.
	    switch (Memc[cmd+1]) {
	    case 'o':				# do object only
	        call do_continuum (rv, OBJECT_SPECTRUM)
	    case 't':				# do template only
		call do_continuum (rv, REFER_SPECTRUM)
	    default:
		call rv_errmsg (
		  "Ambigous argument. Choose one of 'object|template'.")
	    }
	}
	if (RV_INTERACTIVE(rv) == YES)
	    stat = spc_cursor (rv)

	call sfree (sp)
end


# CMD_CONTINUUM - Set/Show which spectra get continuum subtracted.

procedure cmd_continuum (rv)

pointer	rv					#I RV struct pointer

pointer	sp, cont, bp
int	contin, cod_which()

begin
	call smark (sp)
	call salloc (bp, SZ_FNAME, TY_CHAR)
	call salloc (cont, SZ_FNAME, TY_CHAR)

	call gargstr (Memc[cont], SZ_FNAME)	# get a new file name
	if (Memc[cont] != EOS) {
	    contin = cod_which (Memc[cont+1])
	    if (contin == 0) {
		call rv_errmsg ("Unknown value.  Choose one of `%s'")
		    call pargstr ("|both|none|object|template|")
		call sfree (sp)
		return
	    }
	    RV_CONTINUUM(rv) = contin
	    if (RV_CONTINUUM(rv) == BOTH || RV_CONTINUUM(rv) == OBJ_ONLY)
	        call do_continuum (rv, OBJECT_SPECTRUM)
	    if (RV_CONTINUUM(rv) == BOTH || RV_CONTINUUM(rv) == TEMP_ONLY)
	        call do_continuum (rv, REFER_SPECTRUM)
	    RV_NEWXCOR(rv) = YES
	} else {
	    call nam_which (RV_CONTINUUM(rv), Memc[bp])
	    call printf ("continuum = `%s'")
		call pargstr (Memc[bp])
	}
	call sfree (sp)
end


# CMD_CORRECTION - Compute a velocity correction from a pixel shift.

procedure cmd_correction (rv)

pointer	rv					#I RV struct pointer

double	vobs, vcor, verr, rv_shift2vel()
real	rval, sigma
int	stat, nscan(), rv_rvcorrect()

begin
	call gargr (rval)
	sigma = 0.0
	if (nscan() == 2) {
	    if (RV_DCFLAG(rv) != -1) {
	        stat = rv_rvcorrect (rv, rval, sigma, vobs, vcor, verr)
	        call printf (
		    "Shift = %.4f ==>  vrel = %.4f vobs = %.4f vhelio = %.4f")
		        call pargr (rval)
			call pargd (rv_shift2vel(rv,rval))
		        call pargd (vobs)
		        call pargd (vcor)
	        call flush (STDOUT)
	    } else {
		call rv_errmsg ("No dispersion information for computation.")
	    }
	} else
	    call rv_errmsg ("Usage: ':correction <shift>'")
end


# CMD_DELTAV - Print the velocity dispersion to the screen.

procedure cmd_deltav (rv)

pointer	rv					#I RV struct pointer

begin
	call printf ("Velocity dispersion = %7.2f Km/sec/pixel")
	    call pargr (RV_DELTAV(rv))
end


# CMD_FILTER -  Set/Show the current FFT filter value.
 
procedure cmd_filter (rv)

pointer rv					#I RV struct pointer

pointer	sp, buf, bp
int	tmp, filt
int	rv_chk_filter(), cod_which()

begin
	call smark (sp)
	call salloc (buf, SZ_LINE, TY_CHAR)
	call salloc (bp, SZ_LINE, TY_CHAR)

	call gargstr (Memc[buf], SZ_FNAME)
	if (Memc[buf] != EOS) {
	    filt = cod_which (Memc[buf+1])
	    if (filt == 0) {
		call rv_errmsg ("Unknown value.  Choose one of `%s'")
		    call pargstr ("|both|none|object|template|")
		call sfree (sp)
		return
	    }
	    tmp = RV_FILTER(rv)
	    RV_FILTER(rv) = filt
	    if (filt == BOTH || filt == OBJ_ONLY) {
	        if (rv_chk_filter(rv,OBJECT_SPECTRUM) != OK) {
	    	        RV_FILTER(rv) = tmp
		        call rv_errmsg (
			    "Filter values not yet set or ambiguous.")
		        call sfree (sp)
		        return
	        }
	    } else if (filt == BOTH || filt == TEMP_ONLY) {
	        if (rv_chk_filter(rv,REFER_SPECTRUM) != OK) {
	    	        RV_FILTER(rv) = tmp
		        call rv_errmsg (
			    "Filter values not yet set or ambiguous.")
		        call sfree (sp)
		        return
	        }
	    }
	    RV_FILTER(rv) = filt
	    RV_NEWXCOR(rv) = YES
	} else {
	    call nam_which (RV_FILTER(rv), Memc[bp])
	    call printf ("filter = `%s'")
		call pargstr (Memc[bp])
	}

	call sfree (sp)
end


# CMD_FITFUNC -  Set/Show the current correlation fitting function.

procedure cmd_fitfunc (rv)

pointer	rv					#I RV struct pointer

pointer	sp, buf, bp
int	func, strdic()

begin
	call smark (sp)
	call salloc (buf, SZ_LINE, TY_CHAR)
	call salloc (bp, SZ_LINE, TY_CHAR)

	call gargstr (Memc[buf], SZ_FNAME)
	if (Memc[buf] != EOS) {
	    func = strdic(Memc[buf+1],Memc[buf+1], SZ_FNAME, RV_CFTYPES)
	    if (func == 0) {
		call rv_errmsg ("Unknown function.  Choose one of `%s'")
		    call pargstr ("|gaussian|lorentzian|parabola|center1d|")
		call sfree (sp)
		return
	    }
	    call rv_erase_fit (rv, false)
	    RV_FITFUNC(rv) = func
	    RV_FITDONE(rv) = NO
	    call rv_erase_fit (rv, true)
	} else {
	    call nam_fitfunc (rv, Memc[bp])
	    call printf ("Fitting Function = `%s'")
	       call pargstr (Memc[bp])
	}
	call sfree (sp)
end


# CMD_HEIGHT - Get/Set the fitting height.

procedure cmd_height (rv)

pointer	rv					#I RV struct pointer

real	rval
int	nscan()

begin
	call gargr (rval)
	if (nscan() == 2) {
	    call rv_erase_fit (rv, false)
	    RV_FITHGHT(rv) = rval
	    RV_FITDONE(rv) = NO
	} else {
	    call printf ("Height = %g")
	        call pargr (RV_FITHGHT(rv))
	}
end


# CMD_IMUPDATE - Set/Show the image header update flag.

procedure cmd_imupdate (rv)

pointer	rv					#I RV struct pointer

bool	bval, itob()
int	nscan(), btoi()

begin
	call gargb (bval)
	if (nscan() == 2) {
	    RV_IMUPDATE(rv) = btoi (bval)
	} else {
	    call printf ("imupdate = `%b'")
	        call pargb (itob(RV_IMUPDATE(rv)))
	}
end


# CMD_LINECOLOR - Set/Show the overlay vector line color.

procedure cmd_linecolor (rv)

pointer	rv					#I RV struct pointer

int	ival, nscan()

begin
	call gargi (ival)
	if (nscan() == 2) {
	    RV_LINECOLOR(rv) = ival
	    RV_NEWGRAPH(rv) = YES
	} else {
	    call printf ("Line color = %d")
	        call pargi (RV_LINECOLOR(rv))
	}
end


# CMD_MAXWIDTH - Get/Set the maximum fitting width.

procedure cmd_maxwidth (rv)

pointer	rv					#I RV struct pointer

real	rval
int	nscan()

begin
	call gargr (rval)
	if (nscan() == 2) {
	    if (rval > RV_CCFNPTS(rv)) {
		call rv_errmsg ("Maxwidth must be less than %d.")
		    call pargi (RV_CCFNPTS(rv))
	    } else {
		call rv_erase_fit (rv, false)
	        RV_MAXWIDTH(rv) = rval
		RV_FITDONE(rv) = NO
	    }
	} else {
	    call printf ("maxwidth = %g")
	        call pargr (RV_MAXWIDTH(rv))
	}
end


# CMD_MINWIDTH - Get/Set the minimum fitting width.

procedure cmd_minwidth (rv)

pointer	rv					#I RV struct pointer

real	rval
int	nscan()

begin
	call gargr (rval)
	if (nscan() == 2) {
	    if (rval < 3.) {
		call rv_errmsg ("Minwidth must be greater than 3.")
	    } else {
		call rv_erase_fit (rv, false)
	        RV_MINWIDTH(rv) = rval
		RV_FITDONE(rv) = NO
	    }
	} else {
	    call printf ("minwidth = %g")
	        call pargr (RV_MINWIDTH(rv))
	}
end


# CMD_NEXT - Get the next input spectrum.

int procedure cmd_next (rv, infile, rinfile, written, cmdstr)

pointer	rv					#I RV struct pointer
pointer	infile,	rinfile				#I File list pointers
bool	written					#I Have data been written?
char	cmdstr[SZ_FNAME]			#I Command string

pointer	sp, cmd
int	code
int	next_ap(), next_spec(), next_temp()

define	exit_			99

begin
	call smark (sp)
	call salloc (cmd, SZ_LINE, TY_CHAR)
	code = OK

	call sscan (cmdstr)
	call gargwrd (Memc[cmd], SZ_LINE)

	call gargstr (Memc[cmd], SZ_FNAME)
	switch (Memc[cmd+1]) {
	case 'a':				# next aperture
	    call rv_do_save (rv, written)
	    code = next_ap (rv, written)
	case 'o':				# next object spectrum
	    call rv_do_save (rv, written)
	    code = next_spec (rv, infile, written)
	case 't':				# next template spectrum
	    call rv_do_save (rv, written)
	    code = next_temp (rv, rinfile, written)
	default:
	    call rv_errmsg ("Please specify 'aperture|object|template'.")
	}

exit_	call sfree (sp)
	return (code)
end


# CMD_OBJECTS - Set/Show the [new] object input list.

int procedure cmd_objects (rv, infile, written)

pointer	rv					#I RV struct pointer
pointer	infile					#I input list pointer
bool	written					#I data write flag

pointer	sp, buf
char 	imname[SZ_FNAME]
int	ip
pointer	imtopen()
int	get_spec(), imtrgetim(), rv_verify_aps()
errchk	imtopen

begin
	call smark (sp)
	call salloc (buf, SZ_FNAME, TY_CHAR)

	call gargstr (Memc[buf], SZ_FNAME)
	if (Memc[buf] != EOS) {
	    call rv_do_save (rv, written)
	    for (ip=1; IS_WHITE(Memc[buf+ip-1]); ip=ip+1)
	          ;
	    call imtclose (infile)
	    OBJCONT(rv) = NO			# update data flags
	    infile = imtopen (Memc[buf+ip-1])
	    RV_OBJECTS(rv) = infile
	    RV_IMNUM(rv) = 1
	    if (imtrgetim(infile, RV_IMNUM(rv), imname, SZ_FNAME) != EOF && 
	       infile != EOF) {
	        if (get_spec(rv, imname, OBJECT_SPECTRUM) == ERR_READ) {
		    call sfree (sp)
	    	    return (ERR_READ)
		}
		if (rv_verify_aps (rv, APPARAM(rv), APLIST(rv,1), 
		    NUMAPS(rv)) == ERR_READ)
		 	return (ERR_READ)
	    } else {
	        call rv_errmsg ("Error reading image from list.\n")
	        call sfree (sp)
	        return (ERR_READ)
	    }
	    RV_NEWXCOR(rv) = YES
	    RV_FITDONE(rv) = NO
	    written = false
	} else {
	    call printf ("Current object image name = `%s'")
	         call pargstr (IMAGE(rv))
	}

	call sfree (sp)
	return (OK)
end


# CMD_OUTPUT - Change/Show the output log file name. 

procedure cmd_output (rv)

pointer	rv					#I RV struct pointer

pointer	sp, fn
bool	streq()
pointer	gopen()
errchk  gopen

begin
	call smark (sp)
	call salloc (fn, SZ_FNAME, TY_CHAR)

	call gargstr (Memc[fn], SZ_FNAME)	# get new file name
	if (Memc[fn] == EOS) {
	    call printf ("Output file name = `%s'")
		call pargstr (SPOOL(rv))
	} else {
	    # Close existing log file - if any
	    if (RV_TXFD(rv) != NULL)
	        call close (RV_TXFD(rv))
	    if (RV_GRFD(rv) != NULL)
	        call close (RV_GRFD(rv))

	    # Open the graphics pointer and file descriptors.
	    if (streq("",Memc[fn+1]) || streq(" ",Memc[fn+1]) || 
		Memc[fn+1] == '"') {
	            RV_TXFD(rv) = NULL
	            RV_GRFD(rv) = NULL
	    } else if (streq("STDOUT",Memc[fn+1])) {
	        RV_TXFD(rv) = STDOUT
	        RV_GRFD(rv) = NULL
	    } else {
	        # Open the files
		if (!streq(Memc[fn+1],"\"\"")) {
		    call init_files (rv, DEVICE(rv), Memc[fn+1], true)
        	    RV_MGP(rv) = gopen ("stdvdm", APPEND, RV_GRFD(rv))
		}
	    }

	    if (streq("",Memc[fn+1]) || streq(" ",Memc[fn+1]) || 
		Memc[fn+1] == '"') {
	        call strcpy ("", SPOOL(rv), SZ_FNAME)
	    } else
	        call strcpy (Memc[fn+1], SPOOL(rv), SZ_FNAME)
	}

	call sfree (sp)
end


# CMD_OUT_TYPE - CCF output type.

procedure cmd_out_type (rv)

pointer	rv					#I RV struct pointer

pointer	sp, buf

begin
	call smark (sp)
	call salloc (buf, SZ_LINE, TY_CHAR)

	call gargstr (Memc[buf], SZ_FNAME)
	if (Memc[buf] != EOS) {
	    if (Memc[buf+1] == 'i') {
	        RV_CCFTYPE(rv) = OUTPUT_IMAGE
	    } else if (Memc[buf+1] == 't') {
	        RV_CCFTYPE(rv) = OUTPUT_TEXT
	    } else
		call rv_errmsg ("Choose one of 'image|text'.")
	} else {
	    call printf ("ccftype = `%s'")
	        if (RV_CCFTYPE(rv) == OUTPUT_IMAGE)
	            call pargstr ("image")
	        else
	            call pargstr ("text file")
	}

	call sfree (sp)
end


# CMD_PEAK - Is peak height a normalized correlation?

procedure cmd_peak (rv)

pointer	rv					#I RV struct pointer

bool	bval, itob()
int	nscan(), btoi()

begin
	call gargb (bval)
	if (nscan() == 2) {
	    call rv_erase_fit (rv, false)
	    RV_PEAK(rv) = btoi (bval)
	    RV_FITDONE(rv) = NO
	} else {
	    call printf ("peak = `%b'")
	        call pargb (itob(RV_PEAK(rv)))
	}
end


# CMD_PIXCORR - Do a pixel-only correlation?

procedure cmd_pixcorr (rv)

pointer	rv					#I RV struct pointer

bool	bval, itob()
int	stat, nscan(), btoi(), rv_getim()

begin
	call gargb (bval)
	if (nscan() == 2) {
	    if (btoi(bval) != RV_PIXCORR(rv)) {
	        RV_PIXCORR(rv) = btoi (bval)
	        RV_FITDONE(rv) = NO
	        RV_NEWXCOR(rv) = YES
		call printf ("Re-reading images....")
		call flush (STDOUT)
                stat = rv_getim (rv, IMAGE(rv), OBJECT_SPECTRUM, INDEF,
		    INDEF, INDEFI)
                stat = rv_getim (rv, RIMAGE(rv), REFER_SPECTRUM, INDEF,
		    INDEF, INDEFI)
		call printf ("\n")
		call flush (STDOUT)
            }
	} else {
	    call printf ("pixcorr = `%b'")
	        call pargb (itob(RV_PIXCORR(rv)))
	}
end


# CMD_PREVIOUS - Get the previous input spectrum.

int procedure cmd_previous (rv, infile, rinfile, written, cmdstr)

pointer	rv					#I RV struct pointer
pointer	infile,	rinfile				#I file list pointers
bool	written					#I have data been written?
char	cmdstr[SZ_FNAME]			#I command string

pointer	sp, cmd
int	code
int	prev_ap(), prev_spec(), prev_temp()

define	exit_			99

begin
	call smark (sp)
	call salloc (cmd, SZ_LINE, TY_CHAR)
	code = OK

	call sscan (cmdstr)
	call gargwrd (Memc[cmd], SZ_LINE)

	call gargstr (Memc[cmd], SZ_FNAME)
	switch (Memc[cmd+1]) {
	case 'a':				# previous aperture
	    call rv_do_save (rv, written)
	    code = prev_ap (rv, written)
	case 'o':				# previous object spectrum
	    call rv_do_save (rv, written)
	    code = prev_spec (rv, infile, written)
	case 't':				# previous template spectrum
	    call rv_do_save (rv, written)
	    code = prev_temp (rv, rinfile, written)
	default:
	    call rv_errmsg ("Please specify 'aperture|object|template'.")
	}

exit_	call sfree (sp)
	return (code)
end


# CMD_PRINTZ - Toggle output of Z values

procedure cmd_printz (rv)

pointer	rv					#I RV struct pointer

bool	bval, itob()
int	nscan(), btoi()

begin
	call gargb (bval)
	if (nscan() == 2) {
	    RV_PRINTZ(rv) = btoi (bval)
	} else {
	    call printf ("Z output = `%b'")
	        call pargb (itob(RV_PRINTZ(rv)))
	}
end


# CMD_PRTDISP - Print the rebinned dispersion info for the user.

procedure cmd_prtdisp (rv)

pointer	rv						#I RV struct pointer

int	nscan()

begin
	if (nscan() > 1) {
	    call rv_errmsg ("Syntax: ':disp'.")
	} else {
	    if (RV_DCFLAG(rv) != -1) {
		call printf ("Object W0 = %.5f  Template W0 = %.5f  WPC = %g\n")
		    call pargr (RV_OW0(rv))
		    call pargr (RV_RW0(rv))
	            call pargr (RV_OWPC(rv))
	    } else {
	        call printf (
		  "No dispersion information present. (Pixel correlation only)")
	    }
	}
end


# CMD_REBIN - Set/Show the rebin parameter.

procedure cmd_rebin (rv)

pointer	rv					#I RV struct pointer

pointer	sp, rb
int	rebin, cod_rebin()

begin
	call smark (sp)
	call salloc (rb, SZ_FNAME, TY_CHAR)

	call gargstr (Memc[rb], SZ_FNAME)
	if (Memc[rb] != EOS) {
            rebin = cod_rebin (Memc[rb])
            if (rebin == ERR) {
                call rv_errmsg (
		   "`rebin' must be one of `smallest|largest|object|template'")
		call sfree (sp)
		return
	    }
	    RV_REBIN(rv) = rebin
	} else {
	    call nam_verbose (rv, Memc[rb])
	    call printf ("rebin = `%s'")
	        call pargstr (Memc[rb])
	}
end


# CMD_REFSPEC - Set/Show the [new] reference spectrum.

int procedure cmd_refspec (rv, rinfile, written)

pointer	rv					#I RV struct pointer
pointer	rinfile					#U image list pointer
bool	written					#I data write flag

pointer	sp, buf, tmp
pointer	imtopen()
int	ip
int	read_template_list(), rv_verify_aps()
errchk	imtopen

begin
	call smark (sp)
	call salloc (buf, SZ_LINE, TY_CHAR)

	call gargstr (Memc[buf], SZ_FNAME)
	if (Memc[buf] != EOS) {
	    call rv_do_save (rv, written)
	    for (ip=0; IS_WHITE(Memc[buf+ip]); ip=ip+1)	# skip white space
	          ;
	    tmp = imtopen (Memc[buf+ip])
	    if (read_template_list(rv,tmp) == ERR_READ) {
		call rv_errmsg ("Null list specified for templates.")
		call sfree (sp)
		return (ERR_READ)
	    } else {
	        call imtclose (rinfile)
	        rinfile = tmp
	        RV_TEMPLATES(rv) = tmp
		if (rv_verify_aps (rv, APPARAM(rv), APLIST(rv,1), 
		    NUMAPS(rv)) == ERR_READ)
		 	return (ERR_READ)
	    }
	    RV_NEWXCOR(rv) = YES
	    RV_FITDONE(rv) = NO
	    call rv_tempcodes (rv, RV_TXFD(rv))		# write out new codes
	    written = false

	} else {
	    call printf ("Current template image name = `%s'")
	         call pargstr (RIMAGE(rv))
	}

	call sfree (sp)
	return (OK)
end


# CMD_REGIONS -  Set/Show the current selected regions list.

int procedure cmd_regions (rv, ssp)

pointer	rv					#I RV struct pointer
pointer	ssp					#I Sample struct pointer

pointer	sp, buf
int	rv_load_sample()

begin
	call smark (sp)
	call salloc (buf, SZ_LINE, TY_CHAR)
	call aclrs (Memc[buf], SZ_FNAME)

	call gargstr (Memc[buf], SZ_FNAME)
	if (Memc[buf] != EOS) {
	    call rv_erase_regions (ssp, RV_GP(rv))
	    if (Memc[buf+1] == '*')
	        SR_COUNT(ssp) = ALL_SPECTRUM
	    else {
	        if (rv_load_sample(ssp, Memc[buf+1]) == ERR_CORREL) {
		    call sfree (sp)
	            return (ERR_CORREL)
		}
	    }
	    RV_NEWXCOR(rv) = YES

	    if (SR_COUNT(ssp) != ALL_SPECTRUM)
	        call rv_mark_regions (ssp, RV_GP(rv))
	    SR_MODIFY(ssp) = YES
	} else {
	    call rv_make_range_string (ssp, Memc[buf])
	    call printf ("Sample regions selected: `%s'")
	        call pargstr (Memc[buf])
	    call flush (STDOUT)
	}

	call sfree (sp)
	return (OK)
end


# CMD_RESULT - Page the logfile of results.

procedure cmd_result (rv)

pointer	rv					#I RV struct pointer

pointer	sp, cmd, buf, gp
int	open(), fstati()
errchk	open

begin
	gp = RV_GP(rv)
	if (gp == NULL)
	    return

	call smark (sp)
	call salloc (buf, SZ_FNAME, TY_CHAR)
	call salloc (cmd, SZ_FNAME, TY_CHAR)

    	# Page the logfile. Pointer is closed to be VMS compatible.
	call gargstr (Memc[cmd], SZ_FNAME)
	if (Memc[cmd] == EOS) {
    	    if (RV_TXFD(rv) != NULL) {
	        if (fstati(RV_TXFD(rv),F_FILESIZE) == 0) 
	    	    call rv_errmsg ("Nothing yet written to logfile.")
	        else {
	            call sprintf (Memc[buf], SZ_FNAME, "%s.txt\0")
	    	        call pargstr (SPOOL(rv))
	            call flush (RV_TXFD(rv))
	            call close (RV_TXFD(rv))
	            call gpagefile (gp, Memc[buf], "Log File of Results:")
	            RV_TXFD(rv) = open (Memc[buf], APPEND, TEXT_FILE)
	        }
    	    } else
	        call rv_errmsg ("No output file specified.")
	} else {
	    call sprintf (Memc[buf], SZ_FNAME, "%s.txt\0")
	        call pargstr (Memc[cmd])
	    call gpagefile (gp, Memc[buf], "Log File of Results:")
	}

	call sfree (sp)
end


# CMD_TEMPVEL - Set/show the known template velocity.

procedure cmd_tempvel (rv, tnum)

pointer	rv					#I RV struct pointer
int	tnum					#I Template number

real	rval
int	nscan()

begin
	call gargr (rval)
	if (nscan() == 2) {
	    TEMPVEL(rv,tnum) = rval
	    RV_NEWXCOR(rv) = YES
	} else {
	    call printf ("Template velocity = %g km/sec")
	        call pargr (TEMPVEL(rv,tnum))
	}
end


# CMD_TNUM - Get the specified template spectrum

int procedure cmd_tnum (rv, rinfile, written, cmdstr)

pointer rv                                      #I RV struct pointer
pointer rinfile                         	#I File list pointers
bool    written                                 #I Have data been written?
char    cmdstr[SZ_FNAME]                        #I Command string

pointer sp, cmd
int     i, tn, t1, t2, code
int	strlen(), get_spec(), imtrgetim()

define  exit_                   99

begin
        call smark (sp)
        call salloc (cmd, SZ_LINE, TY_CHAR)
        code = OK

        call sscan (cmdstr)
        call gargwrd (Memc[cmd], SZ_LINE)

	# Now get the requested template number.
        call gargstr (Memc[cmd], SZ_FNAME)
	for (i=0; IS_WHITE(Memc[cmd+i]); i=i+1)
	    ;
	if (IS_DIGIT(Memc[cmd+i])) {
	    call sscan (Memc[cmd+i])
	        call gargi (tn)
	    #RV_TEMPNUM(rv) = tn
	} else {
	    if (strlen(Memc[cmd+i]) == 1) {
	        tn = int (Memc[cmd+i])
	        if (IS_LOWER(tn)) tn = TO_UPPER(tn)
	        tn = tn - 'A' + 1
	    } else if (strlen(Memc[cmd+i]) == 2) {
		if (Memc[cmd+i] == ' ')
		    t1 = 0
		else {
		    t1 = int (Memc[cmd+i])
                    if (IS_LOWER(t1)) t1 = TO_UPPER(t1)
                    t1 = t1 - 'A' + 1
		}
		t2 = int (Memc[cmd+i])
                if (IS_LOWER(t2)) t2 = TO_UPPER(t2)
                t2 = t2 - 'A' + 1
		tn = t1 * 26 + t2
	    }
	}

	# Optimize.
	if (RV_TEMPNUM(rv) == tn) {
	    call nam_tempcode (tn, Memc[cmd])
	    call rv_errmsg ("Current template is already template `%s'.\n")
		call pargstr (Memc[cmd])
	    call sfree (sp)
	    return
	}

	# Check for the data write.
	call rv_do_save (rv, written)
 
	# Do the read on the template
	RV_TEMPNUM(rv) = tn
	if (imtrgetim(rinfile, RV_TEMPNUM(rv), RIMAGE(rv), SZ_FNAME) != EOF) {
	    if (get_spec (rv, RIMAGE(rv), REFER_SPECTRUM) == ERR_READ)
	        call error (0, "Error reading next template.")
	    call rv_imtitle (RIMAGE(rv), TEMPNAME(rv), SZ_FNAME)
	    written = false
	    RV_TEMPCODE(rv) = TEMPCODE(rv,RV_TEMPNUM(rv))
	    call amovkr (0.0, COEFF(rv,1), 4)
	    RV_FITDONE(rv) = NO
	    RV_NEWXCOR(rv) = YES
	    IS_DBLSTAR(rv) = NO
	} else
	    call rv_errmsg ("Error getting the requested template.")

exit_   call sfree (sp)
        return (code)
end


# CMD_TEXTCOLOR - Set/Show the text color.

procedure cmd_textcolor (rv)

pointer rv                                      #I RV struct pointer

int     ival, nscan()

begin
        call gargi (ival)
        if (nscan() == 2) {
            RV_TXTCOLOR(rv) = ival
        } else {
            call printf ("Text color = %d")
                call pargi (RV_TXTCOLOR(rv))
        }
end


# CMD_VERBOSE - Set/Show the verbose output flag.

procedure cmd_verbose (rv)

pointer	rv					#I RV struct pointer

pointer	sp, bp, op
int	verbose
int	cod_verbose()

begin
	call smark (sp)
	call salloc (bp, SZ_FNAME, TY_CHAR)
	call salloc (op, SZ_FNAME, TY_CHAR)

	call gargstr (Memc[bp], SZ_FNAME)
	if (Memc[bp] != EOS) {
            verbose = cod_verbose (Memc[bp])
            if (verbose == ERR) {
                call rv_errmsg (
		    "`verbose' must be one of `short|long|nogki|nolog|txtonly'")
		call sfree (sp)
		return
	    }
	    RV_VERBOSE(rv) = verbose
	} else {
	    call nam_verbose (rv, Memc[op])
	    call printf ("verbose = `%s'")
	        call pargstr (Memc[op])
	}

	call sfree (sp)
end


# CMD_VERSION - Development debug to print IRAF/RV version numbers.

procedure cmd_version ()

begin
	call printf ("RV Version: %s")
	    call pargstr (RV_VERSION)
end


# CMD_WEIGHTS - Get/Set the fitting weights.

procedure cmd_weights (rv)

pointer	rv					#I RV struct pointer

real	rval
int	nscan()

begin
	call gargr (rval)
	if (nscan() == 2) {
	    call rv_erase_fit (rv, false)
	    RV_WEIGHTS(rv) = rval
	    RV_FITDONE(rv) = NO
	} else {
	    call printf ("weights = %g")
	        call pargr (RV_WEIGHTS(rv))
	}
end


# CMD_WIDTH - Get/Set the fitting width.

procedure cmd_width (rv)

pointer	rv					#I RV struct pointer

real	rval
int	nscan()

begin
	call gargr (rval)
	if (nscan() == 2) {
	    if (!IS_INDEF(rval)) {
	        if (int(rval) > RV_CCFNPTS(rv)) {
		    call rv_errmsg ("Width is greater than npts in the ccf.")
		    return
	        }
	    }
	    call rv_erase_fit (rv, false)
	    RV_FITWIDTH(rv) = rval
	    RV_FITDONE(rv) = NO
	} else {
	    call printf ("width = %g")
	        call pargr (RV_FITWIDTH(rv))
	}
end


# CMD_WINCENTER - Get/Set the window center.

procedure cmd_wincenter (rv)

pointer	rv					#I RV struct pointer

real	rval
int	nscan()

begin
	call gargr (rval)
	if (nscan() == 2) {
	    RV_WINCENPAR(rv) = rval
	    call rv_batch_xcor (rv, RV_TEMPNUM(rv), RV_APNUM(rv), NO, YES, YES)
	} else {
	    if (RV_DCFLAG(rv) == -1 || RV_PIXCORR(rv) == YES) {
	        call printf ("wincenter = %d lags")
		    if (IS_INDEF(RV_WINPAR(rv)))
	                call pargi (INDEFI)
		    else
	                call pargi (int(RV_WINCENPAR(rv)))
	    } else {
	        call printf ("wincenter = %.2f Km/sec")
	            call pargr (RV_WINCENPAR(rv))
	    }
	}
end


# CMD_WINDOW - Set/show the current width of the peak window.

procedure cmd_window (rv)

pointer	rv						#I RV struct pointer

real	rval
int	nscan()

begin
	call gargr (rval)
	if (nscan() == 2) {
	    RV_WINPAR(rv) = rval
	    call rv_batch_xcor (rv, RV_TEMPNUM(rv), RV_APNUM(rv), NO, YES, YES)
	} else {
	    if (RV_DCFLAG(rv) == -1 || RV_PIXCORR(rv) == YES) {
	        call printf ("window = %d pixels")
		    if (IS_INDEF(RV_WINPAR(rv)))
	                call pargi (INDEFI)
		    else
	                call pargi (int(RV_WINPAR(rv)))
	    } else {
	        call printf ("window = %.2f Km/sec")
	            call pargr (RV_WINPAR(rv))
	    }
	}
end
 

# CMD_WRITE - Write results to logfile and/or header.

procedure cmd_write (rv, written)

pointer	rv					#I RV struct pointer
bool	written					#I data write flag

pointer	sp, fn, fname
pointer	gopen()
int	stat, scan()
bool	streq()
errchk	gopen

begin
	if (written && RV_UPDATE(rv) == NO)
	    return

	call smark (sp)
	call salloc (fn, SZ_FNAME, TY_CHAR)
	call salloc (fname, SZ_FNAME, TY_CHAR)

	# Make sure we have an output file.
        if (RV_TXFD(rv) == NULL) {
            call strcpy ("\0", Memc[fname], SZ_FNAME)
            while (Memc[fname] == '\0' && !streq(Memc[fname],"\"\"")) {
                call printf ("Root output filename: ")
                call flush (STDOUT)
                stat = scan()
                    call gargstr (Memc[fname], SZ_FNAME)
            }
            if (!streq(Memc[fname],"\"\"")) {
                call init_files (rv, DEVICE(rv), Memc[fname], true)
                RV_MGP(rv) = gopen ("stdvdm", APPEND, RV_GRFD(rv))
            }
        }
 
        if (!streq(Memc[fname],"\"\"")) {
	    call sprintf (Memc[fn], SZ_FNAME, "%s.txt")
	        call pargstr (SPOOL(rv))
	    call printf ("Writing current results to `%s'....")
	        call pargstr (Memc[fn])
	    call flush (STDOUT)

	    call rv_write (rv, RV_RECORD(rv))
	    call rv_eplot (rv, RV_MGP(rv))
	    #if (RV_VERBOSE(rv) == YES)
	        call rv_verbose_fit (rv, RV_VBFD(rv))
	    RV_RECORD(rv) = RV_RECORD(rv) + 1
	    written = true
	    RV_UPDATE(rv) = NO
	    call printf ("Done.\n")
	} else
	    call printf ("Results not saved.\n")

	call flush (STDOUT)
	call sfree (sp)
end


# CMD_YMAX - Set/show the top of the ccf plot window.

procedure cmd_ymax (rv)

pointer	rv						#I RV struct pointer

real	rval
int	nscan()

begin
	call gargr (rval)
	if (nscan() == 2) {
	    RV_Y2(rv) = rval
	    RV_NEWGRAPH(rv) = YES
	} else {
	    call printf ("Ymax = %f")
	        call pargr (RV_Y2(rv))
	}
end


# CMD_YMIN - Set/show the bottom of the ccf plot window.

procedure cmd_ymin (rv)

pointer	rv						#I RV struct pointer

real	rval
int	nscan()

begin
	call gargr (rval)
	if (nscan() == 2) {
	    RV_Y1(rv) = rval
	    RV_NEWGRAPH(rv) = YES
	} else {
	    call printf ("Ymin = %f")
	        call pargr (RV_Y1(rv))
	}
end