Skip to content
Snippets Groups Projects
Commit f140d255 authored by Tammo Jan Dijkema's avatar Tammo Jan Dijkema
Browse files

Task #10053: work around assertion in stefcal

parent b93e8b1d
No related branches found
No related tags found
No related merge requests found
...@@ -331,7 +331,10 @@ namespace LOFAR { ...@@ -331,7 +331,10 @@ namespace LOFAR {
} }
//cout<<"st1="<<st1%nSt<<(st1>=nSt?"y":"x")<<", t="<<tt<<" "; //cout<<"st1="<<st1%nSt<<(st1>=nSt?"y":"x")<<", t="<<tt<<" ";
//cout<<", w="<<ww<<" "; //cout<<", w="<<ww<<" ";
ASSERT(ww!=0); if (ww==0) {
_stationFlagged[st1%_nSt]=true;
continue;
}
_g(st1,0)=tt/ww; _g(st1,0)=tt/ww;
//cout<<", g="<<iS.g(st1,0)<<endl; //cout<<", g="<<iS.g(st1,0)<<endl;
if (_mode=="phaseonly" || _mode=="scalarphase" || _mode=="tec" || _mode=="tecandphase") { if (_mode=="phaseonly" || _mode=="scalarphase" || _mode=="tec" || _mode=="tecandphase") {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment