From f36fae8bf1129864d2a921ebc0d122273d11c3b0 Mon Sep 17 00:00:00 2001 From: David Rafferty Date: Tue, 23 Feb 2016 11:31:41 +0100 Subject: [PATCH] Increase size threshold for multiscale --- factor/lib/direction.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/factor/lib/direction.py b/factor/lib/direction.py index 3f4fb226..97479427 100644 --- a/factor/lib/direction.py +++ b/factor/lib/direction.py @@ -263,12 +263,12 @@ def set_imaging_parameters(self, nbands, nbands_per_channel, nchan_per_band, self.casa_full_image_threshold_mjy = "{}mJy".format(1.5 * 0.7 / scaling_factor) # Set multiscale imaging mode: Get source sizes and check for large - # sources (anything above 2 arcmin -- the CC sky model was convolved + # sources (anything above 4 arcmin -- the CC sky model was convolved # with a Gaussian of 1 arcmin, so unresolved sources have sizes of ~ # 1 arcmin) if initial_skymodel is not None and self.mscale_field_do is None: sizes = self.get_source_sizes(initial_skymodel.copy()) - large_size_arcmin = 2.0 + large_size_arcmin = 4.0 if any([s > large_size_arcmin for s in sizes]): self.mscale_field_do = True else: