aboutsummaryrefslogtreecommitdiff
path: root/Pltflux.f
diff options
context:
space:
mode:
Diffstat (limited to 'Pltflux.f')
-rwxr-xr-xPltflux.f10
1 files changed, 5 insertions, 5 deletions
diff --git a/Pltflux.f b/Pltflux.f
index 5332f45..ff8fd89 100755
--- a/Pltflux.f
+++ b/Pltflux.f
@@ -12,7 +12,7 @@ c******************************************************************************
c call up the flux plot
- if (plotopt .eq. 0) return
+ if (plotopt == 0) return
10 choice = 'y'
plotroutine = 'term_land_flux'
lscreen = 12
@@ -25,14 +25,14 @@ c make a hardcopy, write to a postscript file, or replot?
nchars = 33
call getasci (nchars,lscreen)
choice = chinfo(1:1)
- if (choice.eq.'n' .or. nchars.le.0) then
+ if (choice=='n' .or. nchars<=0) then
return
- elseif (choice .eq. 'h') then
+ elseif (choice == 'h') then
plotroutine = 'hard_land_flux'
call makeplot (lscreen)
- elseif (choice .eq. 'r') then
+ elseif (choice == 'r') then
go to 10
- elseif (choice .eq. 'f') then
+ elseif (choice == 'f') then
plotroutine = 'file_land_flux'
call makeplot (lscreen)
endif