mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
Reduce gain on 2d cumulative spectrum, to be more consistent with others.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6289 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
a263657ba1
commit
bd38074f6b
File diff suppressed because it is too large
Load Diff
@ -147,10 +147,10 @@ subroutine jt65a(dd0,npts,newdat,nutc,nf1,nf2,nfqso,ntol,nsubmode, &
|
|||||||
1012 format(i4.4,i4,i5,f6.1,f8.0,i4,3x,a22,' JT65',i4)
|
1012 format(i4.4,i4,i5,f6.1,f8.0,i4,3x,a22,' JT65',i4)
|
||||||
call flush(6)
|
call flush(6)
|
||||||
call flush(13)
|
call flush(13)
|
||||||
! write(79,3001) nutc,nint(sync1),nsnr,dtx-1.0,nfreq,ncandidates, &
|
write(79,3001) nutc,nint(sync1),nsnr,dtx-1.0,nfreq,ncandidates, &
|
||||||
! nhard_min,ntotal_min,ntry,naggressive,nft,nqual,decoded
|
nhard_min,ntotal_min,ntry,naggressive,nft,nqual,decoded
|
||||||
!3001 format(i4.4,i3,i4,f6.2,i5,i7,i3,i4,i8,i3,i2,i5,1x,a22)
|
3001 format(i4.4,i3,i4,f6.2,i5,i7,i3,i4,i8,i3,i2,i5,1x,a22)
|
||||||
! flush(79)
|
flush(79)
|
||||||
endif
|
endif
|
||||||
decoded0=decoded
|
decoded0=decoded
|
||||||
freq0=freq
|
freq0=freq
|
||||||
|
@ -161,7 +161,7 @@ void CPlotter::draw(float swide[], bool bScroll) //dr
|
|||||||
}
|
}
|
||||||
m_sum[i]=sum;
|
m_sum[i]=sum;
|
||||||
}
|
}
|
||||||
if(m_bCumulative) y2=2.5*gain2d*(m_sum[i]/m_binsPerPixel + m_plot2dZero);
|
if(m_bCumulative) y2=gain2d*(m_sum[i]/m_binsPerPixel + m_plot2dZero);
|
||||||
if(m_Flatten==0) y2 += 15; //### could do better! ###
|
if(m_Flatten==0) y2 += 15; //### could do better! ###
|
||||||
|
|
||||||
if(m_bLinearAvg) { //Linear Avg (yellow)
|
if(m_bLinearAvg) { //Linear Avg (yellow)
|
||||||
|
Loading…
Reference in New Issue
Block a user