-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefcolor.f
More file actions
executable file
·36 lines (24 loc) · 843 Bytes
/
Copy pathDefcolor.f
File metadata and controls
executable file
·36 lines (24 loc) · 843 Bytes
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
subroutine defcolor (icolor)
c******************************************************************************
c This routine decides on whether to call for a black & white hardcopy
c plot or a colorful screen plot
c******************************************************************************
include 'Pstuff.com'
character*7 colors(8)
c*****assign colors to character arrays
colors(1) = 'white '
colors(2) = 'red '
colors(3) = 'cyan '
colors(4) = 'yellow '
colors(5) = 'green '
colors(6) = 'magenta'
colors(7) = 'blue '
colors(8) = 'black '
if (choice.eq.'h' .or. choice.eq.'f' .or.
. choice.eq.'g') then
call sm_ctype (colors(8))
else
call sm_ctype (colors(icolor))
endif
return
end