aboutsummaryrefslogtreecommitdiff
path: root/Moog.f
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2021-08-04 15:18:08 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2021-08-04 15:18:08 -0400
commit70fd14e98bc476a84aef352eaf063cfcba44ab83 (patch)
tree2737f5c1c21c76824f49c6a1b9c7061952b646f5 /Moog.f
parentc396a4bc7a3282de9d2191de0e1076fec9df0783 (diff)
downloadmoog-70fd14e98bc476a84aef352eaf063cfcba44ab83.tar.gz
Use modern equality operators
Diffstat (limited to 'Moog.f')
-rwxr-xr-xMoog.f34
1 files changed, 17 insertions, 17 deletions
diff --git a/Moog.f b/Moog.f
index c54335f..c9ac072 100755
--- a/Moog.f
+++ b/Moog.f
@@ -53,40 +53,40 @@ c*****invoke the overall starting routine
c*****use one of the standard driver routines
- if (control .eq. 'synplot') then
+ if (control == 'synplot') then
call plotit
- elseif (control .eq. 'synth ') then
+ elseif (control == 'synth ') then
call synth
- elseif (control .eq. 'cogsyn ') then
+ elseif (control == 'cogsyn ') then
call cogsyn
- elseif (control .eq. 'blends ') then
+ elseif (control == 'blends ') then
call blends
- elseif (control .eq. 'abfind ') then
+ elseif (control == 'abfind ') then
call abfind
- elseif (control .eq. 'ewfind ') then
+ elseif (control == 'ewfind ') then
call ewfind
- elseif (control .eq. 'cog ') then
+ elseif (control == 'cog ') then
call cog
- elseif (control .eq. 'calmod ') then
+ elseif (control == 'calmod ') then
call calmod
- elseif (control .eq. 'doflux ') then
+ elseif (control == 'doflux ') then
call doflux
- elseif (control .eq. 'weedout') then
+ elseif (control == 'weedout') then
call weedout
- elseif (control .eq. 'gridsyn') then
+ elseif (control == 'gridsyn') then
call gridsyn
- elseif (control .eq. 'gridplo') then
+ elseif (control == 'gridplo') then
call gridplo
- elseif (control .eq. 'binary ') then
+ elseif (control == 'binary ') then
call binary
- elseif (control .eq. 'abpop ') then
+ elseif (control == 'abpop ') then
call abpop
- elseif (control .eq. 'synpop ') then
+ elseif (control == 'synpop ') then
call synpop
c*****or, put in your own drivers in the form below....
- elseif (control .eq. 'mine ') then
+ elseif (control == 'mine ') then
call mydriver
@@ -96,7 +96,7 @@ c*****or else you are out of luck!
istat = ivwrite (4,3,array,49)
istat = ivmove (3,1)
read (*,*) yesno
- if (yesno .eq. 'y') then
+ if (yesno == 'y') then
go to 1
else
call finish (0)