From 25a6d337fe10f7dbb34457d2072c270d6f13f5c2 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Wed, 15 May 2013 19:13:31 +0000 Subject: [PATCH] Remove diagnostic prints. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3272 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- lib/chkss2.f90 | 2 +- lib/decoder.f90 | 6 +++--- mainwindow.cpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/chkss2.f90 b/lib/chkss2.f90 index 726465a3e..046089fc3 100644 --- a/lib/chkss2.f90 +++ b/lib/chkss2.f90 @@ -8,7 +8,7 @@ subroutine chkss2(ss2,schk) ave=sum(ss2)/(9*85) s=ss2/ave-1.0 - call zplot9(s) +! call zplot9(s) s1=0. do lag=0,5 do i=1,16 diff --git a/lib/decoder.f90 b/lib/decoder.f90 index 8fcc44e70..15c8b8088 100644 --- a/lib/decoder.f90 +++ b/lib/decoder.f90 @@ -141,8 +141,8 @@ subroutine decoder(ss,c0,nstandalone) nsnr=nint(snrdb) ndrift=nint(drift/df3) - write(38,3002) nutc,nsnr,i,freq,ccfred(i),schk,nlim,msg -3002 format(i4.4,i5,i6,f8.1,2f6.1,i9,2x,a22) + write(38,3002) nutc,nqd,nsnr,i,freq,ccfred(i),schk,nlim,msg +3002 format(i4.4,i2,i5,i6,f8.1,2f6.1,i9,2x,a22) if(msg.ne.' ') then if(nqd.eq.0) ndecodes0=ndecodes0+1 @@ -163,7 +163,7 @@ subroutine decoder(ss,c0,nstandalone) call flush(6) endif else - write(38,3002) nutc,-99,i,freq,ccfred(i),schk,0 + write(38,3002) nutc,nqd,-99,i,freq,ccfred(i),schk,0 endif endif enddo diff --git a/mainwindow.cpp b/mainwindow.cpp index 0a488a00e..d27451bfb 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1,4 +1,4 @@ -//------------------------------------------------------------ MainWindow +//------------------------------------------------------------- MainWindow #include "mainwindow.h" #include "ui_mainwindow.h" #include "devsetup.h"