add parameter MAXCAND

This commit is contained in:
Pavel Demin 2018-10-23 17:51:38 +02:00
parent 6486644b81
commit c0699a6968
2 changed files with 3 additions and 2 deletions

View File

@ -10,3 +10,4 @@ parameter (NFFT1=2*NSPS) !Length of FFTs for symbol spectra
parameter (NSTEP=NSPS/4) !Rough time-sync step size
parameter (NHSYM=NMAX/NSTEP-3) !Number of symbol spectra (1/4-sym steps)
parameter (NDOWN=20) !Downsample factor
parameter (MAXCAND=200)

View File

@ -7,7 +7,7 @@ program ft8d
character msgcall*6,msggrid*4
real s(NFFT1,NHSYM)
real sbase(NFFT1)
real candidate(3,200)
real candidate(3,MAXCAND)
real*8 dialfreq
complex dd(NMAX,4)
logical newdat
@ -43,7 +43,7 @@ program ft8d
newdat=.true.
syncmin=1.5
call sync8(dd(1:NMAX,ipart),nfa+2000,nfb+2000,syncmin, &
nfqso+2000,200,s,candidate,ncand,sbase)
nfqso+2000,MAXCAND,s,candidate,ncand,sbase)
do icand=1,ncand
sync=candidate(3,icand)
f1=candidate(1,icand)