Commits
Kumar Golap authored 5de839d94b1 Merge
1 - | from __future__ import absolute_import |
2 1 | import os |
3 2 | import math |
4 3 | import shutil |
5 4 | import string |
6 5 | import time |
7 6 | import re |
8 7 | import copy |
9 8 | from typing import TYPE_CHECKING |
10 - | from casatasks.private.casa_transition import is_CASA6 |
11 9 | |
12 10 | |
13 11 | from casatools import ( |
14 12 | synthesisimager, |
15 13 | synthesisdeconvolver, |
16 14 | synthesisnormalizer, |
17 15 | iterbotsink, |
18 16 | ctsys, |
19 17 | table, |
20 18 | image, |
21 19 | ) |
22 20 | from casatasks import casalog |
23 21 | from casatasks.private.imagerhelpers.summary_minor import SummaryMinor |
24 22 | if TYPE_CHECKING: |
25 23 | from casatasks.private.imagerhelpers.input_parameters import ImagerParameters |
26 24 | |
27 25 | ctsys_hostinfo = ctsys.hostinfo |
28 26 | _tb = table() |
29 27 | _ia = image() |
30 28 | |
31 - | |
32 29 | """ |
33 30 | A set of helper functions for tclean. |
34 31 | |
35 32 | Summary... |
36 33 | |
37 34 | """ |
38 35 | |
39 36 | ############################################# |
40 37 | class PySynthesisImager: |
41 38 | |