-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwwm_dislin.F90
3820 lines (3113 loc) · 96 KB
/
wwm_dislin.F90
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
#include "wwm_functions.h"
#ifdef VDISLIN
!/****************************************************************/
!/** DISLIN.F90 **/
!/** **/
!/** Module file for DISLIN Fortran 90. **/
!/** **/
!/** Date : 29.05.2009 **/
!/** Routines : 694 **/
!/** Version : 9.5 A / explicit-shape **/
!/****************************************************************/
module dislin
interface
subroutine abs3pt(x,y,z,xp,yp)
implicit none
real, intent (in) :: x,y,z
real, intent (out) :: xp,yp
end subroutine abs3pt
subroutine addlab(cstr,v,itic,cax)
implicit none
character (len = *), intent (in) :: cstr,cax
real, intent (in) :: v
integer, intent (in) :: itic
end subroutine addlab
subroutine angle(i)
implicit none
integer, intent (in) :: i
end subroutine angle
subroutine arcell(nx,ny,na,nb,alpha,beta,theta)
implicit none
integer, intent (in) :: nx,ny,na,nb
real, intent (in) :: alpha,beta,theta
end subroutine arcell
subroutine areaf(ix,iy,n)
implicit none
integer, intent (in) :: n
integer, dimension (n), intent (in) :: ix,iy
end subroutine areaf
subroutine autres(i,j)
implicit none
integer, intent (in) :: i,j
end subroutine autres
subroutine ax2grf()
end subroutine ax2grf
subroutine ax3len(i,j,k)
implicit none
integer, intent (in) :: i,j,k
end subroutine ax3len
subroutine axclrs(n,copt,cax)
implicit none
integer, intent(in) :: n
character (len = *) , intent (in) :: copt, cax
end subroutine axclrs
subroutine axends(copt,cax)
implicit none
character (len = *) , intent (in) :: copt, cax
end subroutine axends
subroutine axgit()
end subroutine axgit
subroutine axis3d(x,y,z)
implicit none
real, intent (in) :: x,y,z
end subroutine axis3d
subroutine axsbgd(n)
implicit none
integer, intent (in) :: n
end subroutine axsbgd
subroutine axslen(i,j)
implicit none
integer, intent (in) :: i,j
end subroutine axslen
subroutine axsorg(i,j)
implicit none
integer, intent (in) :: i,j
end subroutine axsorg
subroutine axspos(i,j)
implicit none
integer, intent (in) :: i,j
end subroutine axspos
subroutine axsscl(copt,cax)
implicit none
character (len = *), intent (in) :: copt,cax
end subroutine axsscl
subroutine axstyp(copt)
implicit none
character (len = *), intent (in) :: copt
end subroutine axstyp
subroutine barbor(iclr)
implicit none
integer, intent (in) :: iclr
end subroutine barbor
subroutine barclr(ic1,ic2,ic3)
implicit none
integer, intent (in) :: ic1,ic2,ic3
end subroutine barclr
subroutine bargrp(n,xgap)
implicit none
integer, intent (in) :: n
real, intent (in) :: xgap
end subroutine bargrp
subroutine barmod(cmode,copt)
implicit none
character (len = *), intent (in) :: cmode,copt
end subroutine barmod
subroutine baropt(x1,x2)
implicit none
real, intent (in) :: x1,x2
end subroutine baropt
subroutine barpos(cpos)
implicit none
character (len = *), intent (in) :: cpos
end subroutine barpos
subroutine bars(xray,y1ray,y2ray,n)
implicit none
integer, intent (in) :: n
real, intent (in out), dimension (n) :: xray,y1ray,y2ray
end subroutine bars
subroutine bars3d(xray,yray,z1ray,z2ray,xwray,ywray,icray,n)
implicit none
integer, intent (in) :: n
real, intent (in), dimension (n) :: xray,yray,z1ray,z2ray,xwray,ywray
integer, intent (in), dimension (n) :: icray
end subroutine bars3d
subroutine bartyp(ctyp)
implicit none
character (len = *), intent (in) :: ctyp
end subroutine bartyp
subroutine barwth(fact)
implicit none
real, intent (in) :: fact
end subroutine barwth
subroutine basalf(calph)
implicit none
character (len = *), intent (in) :: calph
end subroutine basalf
subroutine basdat(id,im,iy)
implicit none
integer, intent (in) :: id, im, iy
end subroutine basdat
subroutine bezier(xray,yray,nray,x,y,n)
implicit none
integer, intent (in) :: nray,n
real, dimension (nray), intent (in) :: xray, yray
real, dimension (n), intent (out) :: x, y
end subroutine bezier
subroutine bfcclr(ic)
implicit none
integer, intent (in) :: ic
end subroutine bfcclr
subroutine bfcmsh(ic)
implicit none
integer, intent (in) :: ic
end subroutine bfcmsh
subroutine bitsi2(nbits,mher,iher,mhin,ihin,lob)
implicit none
integer, intent (in) :: nbits,iher,ihin,lob
integer (kind=selected_int_kind(4)), intent (in) :: mher
integer (kind=selected_int_kind(4)), intent (in out) :: mhin
end subroutine bitsi2
subroutine bitsi4(nbits,mher,iher,mhin,ihin,lob)
implicit none
integer, intent (in) :: nbits,mher,iher,ihin,lob
integer, intent (in out) :: mhin
end subroutine bitsi4
subroutine bmpfnt(cfnt)
implicit none
character (len = *), intent (in) :: cfnt
end subroutine bmpfnt
subroutine bmpmod(n,cval,copt)
implicit none
character (len = *), intent (in) :: cval,copt
integer, intent (in) :: n
end subroutine bmpmod
subroutine box2d()
end subroutine box2d
subroutine box3d()
end subroutine box3d
subroutine center()
end subroutine center
subroutine cgmbgd(xr,xg,xb)
implicit none
real, intent (in) :: xr,xg,xb
end subroutine cgmbgd
subroutine cgmpic(ct)
implicit none
character (len = *), intent (in) :: ct
end subroutine cgmpic
subroutine cgmver(n)
implicit none
integer, intent (in) :: n
end subroutine cgmver
subroutine chaang(x)
implicit none
real, intent (in) :: x
end subroutine chaang
subroutine chacod(copt)
implicit none
character (len = *), intent (in) :: copt
end subroutine chacod
subroutine chaspc(x)
implicit none
real, intent (in) :: x
end subroutine chaspc
subroutine chawth(x)
implicit none
real, intent (in) :: x
end subroutine chawth
subroutine chnatt()
end subroutine chnatt
subroutine chncrv(copt)
implicit none
character (len = *), intent (in) :: copt
end subroutine chncrv
subroutine chndot()
end subroutine chndot
subroutine chndsh()
end subroutine chndsh
subroutine chnbar(copt)
implicit none
character (len = *), intent (in) :: copt
end subroutine chnbar
subroutine chnpie(copt)
implicit none
character (len = *), intent (in) :: copt
end subroutine chnpie
subroutine circ3p(x1,y1,x2,y2,x3,y3,xm,ym,r)
implicit none
real, intent (in) :: x1,y1,x2,y2,x3,y3
real, intent (out) :: xm,ym,r
end subroutine circ3p
subroutine circle(nx,ny,nr)
implicit none
integer, intent (in) :: nx,ny,nr
end subroutine circle
subroutine circsp(n)
implicit none
integer, intent (in) :: n
end subroutine circsp
subroutine clip3d(ctyp)
implicit none
character (len = *), intent (in) :: ctyp
end subroutine clip3d
subroutine closfl(nlu)
implicit none
integer, intent (in) :: nlu
end subroutine closfl
subroutine clpbor(copt)
implicit none
character (len = *), intent (in) :: copt
end subroutine clpbor
subroutine clpmod(cmod)
implicit none
character (len = *), intent (in) :: cmod
end subroutine clpmod
subroutine clpwin(nx,ny,nw,nh)
implicit none
integer, intent (in) :: nx,ny,nw,nh
end subroutine clpwin
subroutine clrcyc(i,iclr)
implicit none
integer, intent (in) :: i,iclr
end subroutine clrcyc
subroutine clrmod(copt)
implicit none
character (len = *), intent (in) :: copt
end subroutine clrmod
subroutine clswin(id)
implicit none
integer, intent (in) :: id
end subroutine clswin
subroutine color(copt)
implicit none
character (len = *), intent (in) :: copt
end subroutine color
subroutine colran(i,j)
implicit none
integer, intent (in) :: i,j
end subroutine colran
subroutine colray(z,ncol,n)
implicit none
integer, intent (in) :: n
real, dimension (n), intent (in) :: z
integer, dimension (n), intent (out) :: ncol
end subroutine colray
subroutine complx()
end subroutine complx
subroutine conclr(iray,n)
implicit none
integer, intent (in) :: n
integer, dimension (n), intent (in) :: iray
end subroutine conclr
subroutine concrv(x,y,n,zlev)
implicit none
integer, intent (in) :: n
real, dimension (n), intent (in) :: x,y
real, intent (in) :: zlev
end subroutine concrv
subroutine cone3d(x,y,z,r,h1,h2,nsk1,nsk2)
implicit none
real, intent (in) :: x,y,z,r,h1,h2
integer, intent (in) :: nsk1,nsk2
end subroutine cone3d
subroutine confll(xray,yray,zray,n,i1ray,i2ray,i3ray,ntri,zlev,nlev)
implicit none
integer, intent (in) :: n,ntri,nlev
real, dimension (n), intent (in) :: xray,yray,zray
real, dimension (nlev), intent (in) :: zlev
integer, dimension (ntri), intent (in) :: i1ray,i2ray,i3ray
end subroutine confll
subroutine congap(xgap)
implicit none
real, intent (in) :: xgap
end subroutine congap
subroutine conlab(cstr)
implicit none
character (len = *), intent (in) :: cstr
end subroutine conlab
subroutine conmat(zmat,n,m,zlev)
implicit none
integer, intent (in) :: n,m
real, dimension (n,m), intent (in) :: zmat
real, intent (in) :: zlev
end subroutine conmat
subroutine conmod (xf1,xf2)
implicit none
real, intent (in) :: xf1,xf2
end subroutine conmod
subroutine conn3d(x2,y2,z2)
implicit none
real, intent (in) :: x2,y2,z2
end subroutine conn3d
subroutine connpt(x,y)
implicit none
real, intent (in) :: x,y
end subroutine connpt
subroutine conpts(x,n,y,m,z,zlev,xpts,ypts,maxpts,nray,maxray,nlins)
implicit none
integer, intent (in) :: n,m,maxpts,maxray
real, dimension (n), intent (in) :: x
real, dimension (m), intent (in) :: y
real, dimension (n,m), intent (in) :: z
real, intent (in) :: zlev
integer, dimension (maxray), intent (out) :: nray
integer, intent (out) :: nlins
real, dimension (maxpts), intent (out) :: xpts,ypts
end subroutine conpts
subroutine conshd(xray,n,yray,m,zmat,zlev,nlray)
implicit none
integer, intent (in) :: n,m,nlray
real, dimension (n), intent (in) :: xray
real, dimension (m), intent (in) :: yray
real, dimension (nlray), intent (in) :: zlev
real, dimension (n,m), intent (in) :: zmat
end subroutine conshd
subroutine contri(xray,yray,zray,n,i1ray,i2ray,i3ray,ntri,zlev)
implicit none
integer, intent (in) :: n,ntri
real, dimension (n), intent (in) :: xray,yray,zray
integer, dimension (ntri), intent (in) :: i1ray,i2ray,i3ray
real, intent (in) :: zlev
end subroutine contri
subroutine contur(x,n,y,m,z,zlev)
implicit none
integer, intent (in) :: n,m
real, dimension (n), intent (in) :: x
real, dimension (m), intent (in) :: y
real, dimension (n,m), intent (in) :: z
real, intent (in) :: zlev
end subroutine contur
subroutine cross()
end subroutine cross
subroutine crvmat(zmat,ixdim,iydim,ixpts,iypts)
implicit none
integer, intent (in) :: ixdim,iydim,ixpts,iypts
real, dimension (ixdim,iydim), intent (in) :: zmat
end subroutine crvmat
subroutine crvtri(xray,yray,zray,n,i1ray,i2ray,i3ray,ntri)
implicit none
integer, intent (in) :: n,ntri
real, dimension (n), intent (in) :: xray,yray,zray
integer, dimension (ntri), intent (in) :: i1ray,i2ray,i3ray
end subroutine crvtri
subroutine curv3d(x,y,z,n)
implicit none
integer, intent (in) :: n
real, dimension (n), intent (in) :: x,y,z
end subroutine curv3d
subroutine csrkey(ik)
implicit none
integer, intent (out) :: ik
end subroutine csrkey
subroutine csrmod(cmod,ckey)
implicit none
character (len = *), intent (in) :: cmod,ckey
end subroutine csrmod
subroutine csrpos(ix,iy,ik)
implicit none
integer, intent (in out) :: ix,iy
integer, intent (out) :: ik
end subroutine csrpos
subroutine csrpt1(ix,iy)
implicit none
integer, intent (out) :: ix,iy
end subroutine csrpt1
subroutine csrmov(ixray,iyray,nmax,n,iret)
implicit none
integer, intent (in) :: nmax
integer, dimension (nmax), intent (out) :: ixray,iyray
integer, intent (out) :: n, iret
end subroutine csrmov
subroutine csrpts(ixray,iyray,nmax,n,iret)
implicit none
integer, intent (in) :: nmax
integer, dimension (nmax), intent (out) :: ixray,iyray
integer, intent (out) :: n, iret
end subroutine csrpts
subroutine csrrec(ix1,iy1,ix2,iy2)
implicit none
integer, intent (out) :: ix1,iy1,ix2,iy2
end subroutine csrrec
subroutine csrtyp(copt)
implicit none
character (len = *), intent (in) :: copt
end subroutine csrtyp
subroutine csruni(copt)
implicit none
character (len = *), intent (in) :: copt
end subroutine csruni
subroutine curve(x,y,n)
implicit none
integer, intent (in) :: n
real, dimension (n), intent (in) :: x,y
end subroutine curve
subroutine curve3(x,y,z,n)
implicit none
integer, intent (in) :: n
real, dimension (n), intent (in) :: x,y,z
end subroutine curve3
subroutine curvmp(x,y,n)
implicit none
integer, intent (in) :: n
real, dimension (n), intent (in) :: x,y
end subroutine curvmp
subroutine curvx3(x,y,z,n)
implicit none
integer, intent (in) :: n
real, dimension (n), intent (in) :: x,z
real, intent (in) :: y
end subroutine curvx3
subroutine curvy3(x,y,z,n)
implicit none
integer, intent (in) :: n
real, dimension (n), intent (in) :: y,z
real, intent (in) :: x
end subroutine curvy3
subroutine cyli3d(x,y,z,r,h,nsk1,nsk2)
implicit none
real, intent (in) :: x,y,z,r,h
integer, intent (in) :: nsk1,nsk2
end subroutine cyli3d
subroutine dash()
end subroutine dash
subroutine dashl()
end subroutine dashl
subroutine dashm()
end subroutine dashm
subroutine dattim(cdat,ctim)
implicit none
character (len = *), intent (out) :: cdat,ctim
end subroutine dattim
subroutine dbffin()
end subroutine dbffin
subroutine dbfini(iret)
implicit none
integer, intent (out) :: iret
end subroutine dbfini
subroutine delglb()
implicit none
end subroutine delglb
subroutine digits(i,cax)
implicit none
integer, intent (in) :: i
character (len = *), intent (in) :: cax
end subroutine digits
subroutine disalf()
end subroutine disalf
subroutine disfin()
end subroutine disfin
subroutine disini()
end subroutine disini
subroutine disk3d(x,y,z,r1,r2,nsk1,nsk2)
implicit none
real, intent (in) :: x,y,z,r1,r2
integer, intent (in) :: nsk1,nsk2
end subroutine disk3d
subroutine doevnt()
end subroutine doevnt
subroutine dot()
end subroutine dot
subroutine dotl()
end subroutine dotl
subroutine duplx()
end subroutine duplx
subroutine dwgbut(cstr,ival)
implicit none
character (len=*), intent (in) :: cstr
integer, intent (in out) :: ival
end subroutine dwgbut
subroutine dwgfil(clab,cstr,cmask)
implicit none
character (len=*), intent (in) :: clab,cmask
character (len=*), intent (in out) :: cstr
end subroutine dwgfil
subroutine dwglis(clab,clis,ilis)
implicit none
character (len=*), intent(in) :: clab,clis
integer, intent (in out) :: ilis
end subroutine dwglis
subroutine dwgmsg(cstr)
implicit none
character (len=*), intent (in) :: cstr
end subroutine dwgmsg
subroutine dwgtxt(clab,cstr)
implicit none
character (len=*), intent(in) :: clab
character (len=*), intent(in out) :: cstr
end subroutine dwgtxt
subroutine ellips(nx,ny,na,nb)
implicit none
integer, intent (in) :: nx,ny,na,nb
end subroutine ellips
subroutine endgrf()
end subroutine endgrf
subroutine erase()
end subroutine erase
subroutine errbar(x,y,err1,err2,n)
implicit none
integer, intent (in) :: n
real, dimension (n), intent (in) :: x,y,err1,err2
end subroutine errbar
subroutine errdev(copt)
implicit none
character (len = *), intent (in) :: copt
end subroutine errdev
subroutine errfil(copt)
implicit none
character (len = *), intent (in) :: copt
end subroutine errfil
subroutine errmod(cstr,cmode)
implicit none
character (len = *), intent (in) :: cstr,cmode
end subroutine errmod
subroutine eushft(calph,csft)
implicit none
character (len = *), intent (in) :: calph,csft
end subroutine eushft
subroutine expzlb(copt)
implicit none
character (len = *), intent (in) :: copt
end subroutine expzlb
subroutine fcha(x,ndez,nl,cstr)
implicit none
real, intent (in) :: x
integer, intent (in) :: ndez
integer, intent (out) :: nl
character (len = *), intent (out) :: cstr
end subroutine fcha
subroutine field(xray,yray,uray,vray,n,ivec)
implicit none
integer, intent (in) :: n,ivec
real, dimension (n), intent (in) :: xray,yray,uray,vray
end subroutine field
subroutine field3d(x1ray,y1ray,z1ray,x2ray,y2ray,z2ray,n,ivec)
implicit none
integer, intent (in) :: n,ivec
real, dimension (n), intent (in) :: x1ray,y1ray,z1ray,x2ray,y2ray,z2ray
end subroutine field3d
subroutine filbox(nx,ny,nw,nh)
implicit none
integer, intent (in) :: nx,ny,nw,nh
end subroutine filbox
subroutine filclr(copt)
implicit none
character (len = *), intent (in) :: copt
end subroutine filclr
subroutine filmod(cmod)
implicit none
character (len = *), intent (in) :: cmod
end subroutine filmod
subroutine filopt(copt,ckey)
implicit none
character (len = *), intent (in) :: copt,ckey
end subroutine filopt
subroutine fixspc(x)
implicit none
real, intent (in) :: x
end subroutine fixspc
subroutine flab3d()
end subroutine flab3d
subroutine flen(x,ndez,nx)
implicit none
real, intent (in) :: x
integer, intent (in) :: ndez
integer, intent (out) :: nx
end subroutine flen
subroutine frame(i)
implicit none
integer, intent (in):: i
end subroutine frame
subroutine frmclr(i)
implicit none
integer, intent (in):: i
end subroutine frmclr
subroutine frmess(i)
implicit none
integer, intent (in):: i
end subroutine frmess
subroutine gapcrv(x)
implicit none
real, intent (in) :: x
end subroutine gapcrv
subroutine gaxpar(a1,a2,copt,cax,a,b,or,stp,ndig)
implicit none
real, intent (in) :: a1,a2
real, intent (out) :: a,b,or,stp
integer, intent (out) :: ndig
character (len=*), intent (in) :: copt, cax
end subroutine gaxpar
subroutine getalf(cstr)
implicit none
character (len = *), intent (out) :: cstr
end subroutine getalf
subroutine getang(i)
implicit none
integer, intent (out) :: i
end subroutine getang
subroutine getbpp(i)
implicit none
integer, intent (out) :: i
end subroutine getbpp
subroutine getclp(nx,ny,nw,nh)
implicit none
integer, intent (out) :: nx,ny,nw,nh
end subroutine getclp
subroutine getclr(i)
implicit none
integer, intent (out) :: i
end subroutine getclr
subroutine getdig(i,j,k)
implicit none
integer, intent (out) :: i,j,k
end subroutine getdig
subroutine getdsp(cdsp)
implicit none
character (len = *), intent (out) :: cdsp
end subroutine getdsp
subroutine getfil(cstr)
implicit none
character (len = *), intent (out) :: cstr
end subroutine getfil
subroutine getgrf(a,e,or,step,copt)
implicit none
real, intent (out) :: a,e,or,step
character (len = *), intent (in) :: copt
end subroutine getgrf
subroutine gethgt(i)
implicit none
integer, intent (out) :: i
end subroutine gethgt
subroutine gethnm(i)
implicit none
integer, intent (out) :: i
end subroutine gethnm
subroutine getind(i,xr,xg,xb)
implicit none
integer, intent (in) :: i
real, intent (out) :: xr,xg,xb
end subroutine getind
subroutine getlab(c1,c2,c3)
implicit none
character (len = *), intent (out) :: c1,c2,c3
end subroutine getlab
subroutine getlen(i,j,k)
implicit none
integer, intent (out) :: i,j,k
end subroutine getlen
subroutine getlev(i)
implicit none
integer, intent (out) :: i
end subroutine getlev
subroutine getlin(i)
implicit none
integer, intent (out) :: i
end subroutine getlin
subroutine getlit(xp,yp,zp,xn,yn,zn,i)
implicit none
integer, intent (in) :: xp,yp,zp,xn,yn,zn
integer, intent (out) :: i
end subroutine getlit
subroutine getmat(x,y,z,n,zmat,nx,ny,zval,imat,wmat)
implicit none
integer, intent (in) :: n,nx,ny
real, dimension (n), intent (in) :: x,y,z
real, dimension (nx,ny), intent (out) :: zmat
real, intent (in) :: zval
integer, dimension (nx,ny), intent (in out) :: imat
real, dimension (nx,ny), intent (in out) :: wmat
end subroutine getmat
subroutine getmfl(cstr)
implicit none
character (len = *), intent (out) :: cstr
end subroutine getmfl
subroutine getmix(c,cstr)
implicit none
character (len = *), intent (out) :: c
character (len = *), intent (in) :: cstr
end subroutine getmix
subroutine getor(i,j)
implicit none
integer, intent (out) :: i,j
end subroutine getor
subroutine getpag(i,j)
implicit none
integer, intent (out) :: i,j
end subroutine getpag
subroutine getpat(i)
implicit none
integer, intent (out) :: i
end subroutine getpat
subroutine getplv(i)
implicit none
integer, intent (out) :: i
end subroutine getplv
subroutine getpos(i,j)
implicit none
integer, intent (out) :: i,j
end subroutine getpos
subroutine getran(i,j)
implicit none
integer, intent (out) :: i,j
end subroutine getran
subroutine getres(i,j)
implicit none
integer, intent (out) :: i,j
end subroutine getres
subroutine getrgb(xr,xg,xb)
implicit none
real, intent (out) :: xr,xg,xb
end subroutine getrgb
subroutine getscl(i,j,k)
implicit none
integer, intent (out) :: i,j,k
end subroutine getscl
subroutine getscr(i,j)
implicit none
integer, intent (out) :: i,j
end subroutine getscr
subroutine getshf(cstr,c)
implicit none
character (len = *), intent (out) :: c
character (len = *), intent (in) :: cstr
end subroutine getshf
subroutine getsp1(i,j,k)
implicit none
integer, intent (out) :: i,j,k
end subroutine getsp1
subroutine getsp2(i,j,k)
implicit none
integer, intent (out) :: i,j,k
end subroutine getsp2
subroutine getsym(i,j)
implicit none
integer, intent (out) :: i,j
end subroutine getsym
subroutine gettcl(i,j)
implicit none
integer, intent (out) :: i,j
end subroutine gettcl
subroutine gettic(i,j,k)
implicit none
integer, intent (out) :: i,j,k
end subroutine gettic
subroutine gettyp(i)
implicit none
integer, intent (out) :: i
end subroutine gettyp
subroutine getuni(i)
implicit none
integer, intent (out) :: i
end subroutine getuni
subroutine getver(xver)
implicit none
real, intent (out) :: xver
end subroutine getver
subroutine getvk(i,j,k)
implicit none
integer, intent (out) :: i,j,k
end subroutine getvk
subroutine getvlt(ctab)
implicit none
character (len = *), intent (out) :: ctab
end subroutine getvlt
subroutine getwid(i)
implicit none
integer, intent (out) :: i
end subroutine getwid
subroutine getwin(ix,iy,nw,nh)
implicit none
integer, intent (out) :: ix,iy,nw,nh
end subroutine getwin