Skip to content

Commit

Permalink
fix handling of whole pol flagged on last iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
jsdillon committed May 10, 2024
1 parent c5d1ef4 commit 2832883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebooks/file_calibration.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,7 @@
" ants_in_reds = set([ant for red in reds for bl in red for ant in utils.split_bl(bl)])\n",
" \n",
" # check to see whether we're done\n",
" if redcal_done or (i == OC_MAX_RERUN) or check_if_whole_pol_flagged(redcal_class):\n",
" if check_if_whole_pol_flagged(redcal_class) or redcal_done or (i == OC_MAX_RERUN):\n",
" break\n",
"\n",
" # re-run redundant calibration using previous solution, updating bad and suspicious antennas\n",
Expand Down

0 comments on commit 2832883

Please sign in to comment.