Commits
Darrell Schiebel authored 160e7d243d0
67 67 | parameters = arg_s + kw_s |
68 68 | self._exe_cmds.append( "tclean( %s )" % parameters ) |
69 69 | return tclean( *args, **kwargs ) |
70 70 | |
71 71 | def cmds( self ): |
72 72 | return self._exe_cmds |
73 73 | |
74 74 | def update( self, msg ): |
75 75 | """ Interactive clean parameters update. |
76 76 | |
77 - | msg: dict with possible keys 'niter', 'cycleniter', 'threshold', 'cyclefactor', 'mask' and 'nmajor' |
77 + | msg: dict with possible keys 'niter', 'cycleniter', 'threshold', 'cyclefactor', and 'mask' |
78 78 | """ |
79 79 | if 'niter' in msg: |
80 80 | try: |
81 81 | self._niter = int(msg['niter']) |
82 82 | except ValueError: |
83 83 | pass |
84 84 | if 'cycleniter' in msg: |
85 85 | try: |
86 86 | self._cycleniter = int(msg['cycleniter']) |
87 87 | except ValueError: |