From c22834051903f692ccc0f0bfb40e70301823e183 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Wed, 31 Jan 2024 21:07:58 -0500 Subject: [PATCH] Tighter sync criteria. --- lib/superfox/synctest.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/superfox/synctest.f90 b/lib/superfox/synctest.f90 index 79908b482..560ce0631 100644 --- a/lib/superfox/synctest.f90 +++ b/lib/superfox/synctest.f90 @@ -99,7 +99,7 @@ program synctest call sync_sf(crcvd,clo,snrdb,f,t) ferr=f-f1 terr=t-xdt - if(abs(ferr).lt.10.0 .or. abs(terr).lt.0.02) ngoodsync=ngoodsync+1 + if(abs(ferr).lt.5.0 .and. abs(terr).lt.0.01) ngoodsync=ngoodsync+1 call hard_symbols(crcvd,f,t,jdat) !Get hard symbol values nharderr=count(jdat.ne.idat) !Count hard errors