Source code for pimfit

##################### generated by xml-casa (v2) from pimfit.xml ####################
##################### d7d637360366fa9a556c7f929f11bf8d ##############################
from __future__ import absolute_import
from casashell.private.stack_manip import find_local as __sf__
from casashell.private.stack_manip import find_frame as _find_frame
from casatools.typecheck import validator as _pc
from casatools.coercetype import coerce as _coerce
from suncasatasks import pimfit as _pimfit_t
from collections import OrderedDict
import numpy
import sys
import os

import shutil

[docs] def static_var(varname, value): def decorate(func): setattr(func, varname, value) return func return decorate
[docs] class _pimfit: """ pimfit ---- Fit one or more elliptical Gaussian components on an image region(s) --------- parameter descriptions --------------------------------------------- imagefiles A list of the input images ncpu Number of cpu cores to use doreg True if use vla_prep to register the image ephemfile emphemeris file generated from vla_prep.read_horizons() timestamps A list of timestamps of the input images msinfofile time-dependent phase center information generated from vla_prep.read_msinfo() box Rectangular region(s) to select in direction plane. See "help par.box" for details. Default is to use the entire direction plane. region Region selection. See "help par.region" for details. Default is to use the full image. chans Channels to use. See "help par.chans" for details. Default is to use all channels. stokes Stokes planes to use. See "help par.stokes" for details. Default is to use first Stokes plane. mask Mask to use. See help par.mask. Default is none. includepix Range of pixel values to include for fitting. excludepix Range of pixel values to exclude for fitting. residual Name of output residual image. model Name of output model image. estimates Name of file containing initial estimates of component parameters. logfile Name of file to write fit results. append If logfile exists, append to it if True or overwrite it if False newestimates File to write fit results which can be used as initial estimates for next run. complist Name of output component list table. overwrite Overwrite component list table if it exists? dooff Also fit a zero level offset? Default is False offset Initial estimate of zero-level offset. Only used if doff is True. Default is 0.0 fixoffset Keep the zero level offset fixed during fit? Default is False stretch Stretch the mask if necessary and possible? See help par.stretch rms RMS to use in calculation of uncertainties. Numeric or valid quantity (record or string). If numeric, it is given units of the input image. If quantity, units must conform to image units. If not positive, the rms of the residual image, in the region of the fit, is used. noisefwhm Noise correlation beam FWHM. If numeric value, interpreted as pixel widths. If quantity (dictionary, string), it must have angular units. summary File name to which to write table of fit parameters. RETURNS void --------- examples ----------------------------------------------------------- PARAMETER SUMMARY imagename Name of the input image box Rectangular region(s) to select in direction plane. See "help par.box" for details. Default is to use the entire direction plane. eg "100, 120, 200, 220, 300, 300, 400, 400" to use two boxes. region Region selection. See "help par.region" for details. Default is to use the full image. chans Channels to use. See "help par.chans" for details. Default is to use all channels. stokes Stokes planes to use. See "help par.stokes" for details. Default is to use first Stokes plane. mask Mask to use. See help par.mask. Default is none. includepix Range of pixel values to include for fitting. Array of two numeric values assumed to have same units as image pixel values. Only one of includepix or excludepix can be specified. excludepix Range of pixel values to exclude for fitting. Array of two numeric values assumed to have same units as image pixel values. Only one of includepix or excludepix can be specified. residual Name of the residual image to write. model Name of the model image to write. estimates Name of file containing initial estimates of component parameters (see below for formatting details). logfile Name of file to write fit results. append If logfile exists, append to it (True) or overwrite it (False). newestimates File to write fit results which can be used as initial estimates for next run. complist Name of output component list table. overwrite Overwrite component list table if it exists? dooff Simultaneously fit a zero-level offset? offset Initial estimate for the zero-level offset. Only used if dooff is True. fixoffset Hold zero-level offset constant during fit? Only used if dooff is True. stretch Stretch the input mask if necessary and possible. Only used if a mask is specified. See help par.stretch. rms RMS to use in calculation of various uncertainties, assumed to have units of the input image. If not positve, the rms of the residual image is used. noisefwhm Noise correlation beam FWHM. If numeric value, interpreted as pixel widths. If quantity (dictionary, string), it must have angular units. summary File name to which to write table of fit parameters. OVERVIEW This application is used to fit one or more two dimensional gaussians to sources in an image as well as an optional zero-level offset. Fitting is limited to a single polarization but can be performed over several contiguous spectral channels. If the image has a clean beam, the report and returned dictionary will contain both the convolved and the deconvolved fit results. When dooff is False, the method returns a dictionary with three keys, 'converged', 'results', and 'deconvolved'. The value of 'converged' is a boolean array which indicates if the fit converged on a channel by channel basis. The value of 'results' is a dictionary representing a component list reflecting the fit results. In the case of an image containing beam information, the sizes and position angles in the 'results' dictionary are those of the source(s) convolved with the restoring beam, while the same parameters in the 'deconvolved' dictionary represent the source sizes deconvolved from the beam. In the case where the image does not contain a beam, 'deconvolved' will be absent. Both the 'results' and 'deconvolved' dictionaries can be read into a component list tool (default tool is named cl) using the fromrecord() method for easier inspection using tool methods, eg cl.fromrecord(res['results']) although this currently only works if the flux density units are conformant with Jy. There are also values in each component subdictionary not used by cl.fromrecord() but meant to supply additional information. There is a 'peak' subdictionary for each component that provides the peak intensity of the component. It is present for both 'results' and 'deconvolved' components. There is also a 'sum' subdictionary for each component indicated the simple sum of pixel values in the the original image enclosed by the fitted ellipse. There is a 'channel' entry in the 'spectrum' subdictionary which provides the zero-based channel number in the input image for which the solution applies. In addtion, if the image has a beam(s), then there will be a 'beam' subdictionary associated with each component in both the 'results' and 'deconvolved' dictionaries. This subdictionary will have three keys: 'beamarcsec' will be a subdictionary giving the beam dimensions in arcsec, 'beampixels' will have the value of the beam area expressed in pixels, and 'beamster' will have the value of the beam area epressed in steradians. Also, if the image has a beam(s), in the component level dictionaries will be an 'ispoint' entry with an associated boolean value describing if the component is consistent with a point source. If dooff is True, in addtion to the specified number of gaussians, a zero-level offset will also be fit. The initial estimate for this offset is specified using the offset parameter. Units are assumed to be the same as the image brightness units. The zero level offset can be held constant during the fit by specifying fixoffset=True. In the case of dooff=True, the returned dictionary contains two additional keys, 'zerooff' and 'zeroofferr', which are both dictionaries containing 'unit' and 'value' keys. The values associated with the 'value' keys are arrays containing the the fitted zero level offset value and its error, respectively, for each channel. In cases where the fit did not converge, these values are set to NaN. The value associated with 'unit' is just the i`mage brightness unit. The region can either be specified by a box(es) or a region. Ranges of pixel values can be included or excluded from the fit. If specified using the box parameter, multiple boxes can be given using the format box="blcx1, blcy1, trcx1, trcy1, blcx2, blcy2, trcx2, trcy2, ... , blcxN, blcyN, trcxN, trcyN" where N is the number of boxes. In this case, the union of the specified boxes will be used. If specified, the residual and/or model images for successful fits will be written. If an estimates file is not specified, an attempt is made to estimate initial parameters and fit a single Gaussian. If a multiple Gaussian fit is desired, the user must specify initial estimates via a text file (see below for details). The user has the option of writing the result of the fit to a log file, and has the option of either appending to or overwriting an existing file. The user has the option of writing the (convolved) parameters of a successful fit to a file which can be fed back to fitcomponents() as the estimates file for a subsequent run. The user has the option of writing the fit results in tabular format to a file whose name is specified using the summary parameter. If specified and positive, the value of rms is used to calculate the parameter uncertainties, otherwise, the rms in the selected region in the relevant channel is used for these calculations. The noisefwhm parameter represents the noise-correlation beam FWHM. If specified as a quantity, it should have angular units. If specified as a numerical value, it is set equal to that number of pixels. If specified and greater than or equal to the pixel size, it is used to calculate parameter uncertainties using the correlated noise equations (see below). If it is specified but less than a pixel width, the the uncorrelated noise equations (see below) are used to compute the parameter uncertainties. If it is not specified and the image has a restoring beam(s), the the correlated noise equations are used to compute parameter uncertainties using the geometric mean of the relevant beam major and minor axes as the noise-correlation beam FWHM. If noisefwhm is not specified and the image does not have a restoring beam, then the uncorrelated noise equations are used to compute the parameter uncertainties. SUPPORTED UNITS Currently only images with brightness units conformant with Jy/beam, Jy.km/s/beam, and K are fully supported for fitting. If your image has some other base brightness unit, that unit will be assumed to be equivalent to Jy/pixel and results will be calculated accordingly. In particular, the flux density (reported as Integrated Flux in the logger and associated with the "flux" key in the returned component subdictionary(ies)) for such a case represents the sum of pixel values. Note also that converting the returned results subdictionary to a component list via cl.fromrecord() currently only works properly if the flux density units in the results dictionary are conformant with Jy. If you need to be able to run cl.fromrecord() on the resulting dictionary you can first modify the flux density units by hand to be (some prefix)Jy and then run cl.fromrecord() on that dictionary, bearing in mind your unit conversion. If the input image has units of K, the flux density of components will be reported in units of [prefix]K*rad*rad, where prefix is an SI prefix used so that the numerical value is between 1 and 1000. To convert to units of K*beam, determine the area of the appropriate beam, which is given by pi/(4*ln(2))*bmaj*bmin, where bmaj and bmin are the major and minor axes of the beam, and convert to steradians (=rad*rad). This value is included in the beam portion of the component subdictionary (key 'beamster'). Then divide the numerical value of the logged flux density by the beam area in steradians. So, for example begin{verbatim} # run on an image with K brightness units res = imfit(...) # get the I flux density in K*beam of component 0 comp = res['results']['component0'] flux_density_kbeam = comp['flux']['value'][0]/comp['beam']['beamster'] end{verbatim} FITTING OVER MULTIPLE CHANNELS For fitting over multiple channels, the result of the previous successful fit is used as the estimate for the next channel. The number of gaussians fit cannot be varied on a channel by channel basis. Thus the variation of source structure should be reasonably smooth in frequency to produce reliable fit results. MASK SPECIFICATION Mask specification can be done using an LEL expression. For example mask = '"myimage">5' will use only pixels with values greater than 5. INCLUDING AND EXCLUDING PIXELS Pixels can be included or excluded from the fit based on their values using these parameters. Note that specifying both is not permitted and will cause an error. If specified, both take an array of two numeric values. ESTIMATES Initial estimates of fit parameters may be specified via an estimates text file. Each line of this file should contain a set of parameters for a single gaussian. Optionally, some of these parameters can be fixed during the fit. The format of each line is peak intensity, peak x-pixel value, peak y-pixel value, major axis, minor axis, position angle, fixed The fixed parameter is optional. The peak intensity is assumed to be in the same units as the image pixel values (eg Jy/beam). The peak coordinates are specified in pixel coordinates. The major and minor axes and the position angle are the convolved parameters if the image has been convolved with a clean beam and are specified as quantities. The fixed parameter is optional and is a string. It may contain any combination of the following characters 'f' (peak intensity), 'x' (peak x position), 'y' (peak y position), 'a' (major axis), 'b' (minor axis), 'p' (position angle). In addition, lines in the file starting with a # are considered comments. An example of such a file is: begin{verbatim} # peak intensity must be in map units 120, 150, 110, 23.5arcsec, 18.9arcsec, 120deg 90, 60, 200, 46arcsec, 23arcsec, 140deg, fxp end{verbatim} This is a file which specifies that two gaussians are to be simultaneously fit, and for the second gaussian the specified peak intensity, x position, and position angle are to be held fixed during the fit. ERROR ESTIMATES Error estimates are based on the work of Condon 1997, PASP, 109, 166. Key assumptions made are: * The given model (elliptical Gaussian, or elliptical Gaussian plus constant offset) is an adequate representation of the data * An accurate estimate of the pixel noise is provided or can be derived (see above). For the case of correlated noise (e.g., a CLEAN map), the fit region should contain many "beams" or an independent value of rms should be provided. * The signal-to-noise ratio (SNR) or the Gaussian component is large. This is necessary because a Taylor series is used to linearize the problem. Condon (1997) states that the fractional bias in the fitted amplitude due to this assumption is of order 1/(S*S), where S is the overall SNR of the Gaussian with respect to the given data set (defined more precisely below). For a 5 sigma "detection" of the Gaussian, this is a 4% effect. * All (or practically all) of the flux in the component being fit falls within the selected region. If a constant offset term is simultaneously fit and not fixed, the region of interest should be even larger. The derivations of the expressions summarized in this note assume an effectively infinite region. Two sets of equations are used to calculate the parameter uncertainties, based on if the noise is correlated or uncorrelated. The rules governing which set of equations are used have been described above in the description of the noisefwhm parameter. In the case of uncorrelated noise, the equations used are f(A) = f(I) = f(M) = f(m) = k*s(x)/M = k*s(y)/m = (s(p)/sqrt(2))*((M*M - m*m)/(M*m)) = sqrt(2)/S where s(z) is the uncertainty associated with parameter z, f(z) = s(z)/abs(z) is the fractional uncertainty associated with parameter z, A is the peak intensity, I is the flux density, M and m are the FWHM major and minor axes, p is the position angle of the component, and k = sqrt(8*ln(2)). s(x) and s(y) are the direction uncertainties of the component measured along the major and minor axes; the resulting uncertainties measured along the principle axes of the image direction coordinate are calculated by propagation of errors using the 2D rotation matrix which enacts the rotation through the position angle plus 90 degrees. S is the overall signal to noise ratio of the component, which, for the uncorrelated noise case is given by S = (A/(k*h*r))*sqrt(pi*M*m) where h is the pixel width of the direction coordinate and r is the rms noise (see the discussion above for the rules governing how the value of r is determined). For the correlated noise case, the same equations are used to determine the uncertainties as in the uncorrelated noise case, except for the uncertainty in I (see below). However, S is given by S = (A/(2*r*N)) * sqrt(M*m) * (1 + ((N*N/(M*M)))**(a/2)) * (1 + ((N*N/(m*m)))**(b/2)) where N is the noise-correlation beam FWHM (see discussion of the noisefwhm parameter for rules governing how this value is determined). "**" indicates exponentiation and a and b depend on which uncertainty is being calculated. For sigma(A), a = b = 3/2. For M and x, a = 5/2 and b = 1/2. For m, y, and p, a = 1/2 and b = 5/2. f(I) is calculated in the correlated noise case according to f(I) = sqrt( f(A)*f(A) + (N*N/(M*m))*(f(M*f(M) + f(m)*f(m))) ) Note well the following caveats: * Fixing Gaussian component parameters will tend to cause the parameter uncertainties reported for free parameters to be overestimated. * Fitting a zero level offset that is not fixed will tend to cause the reported parameter uncertainties to be slightly underestimated. * The parameter uncertainties will be inaccurate at low SNR (a ~10% for SNR = 3). * If the fitted region is not considerably larger than the largest component that is fit, parameter uncertainties may be mis-estimated. * An accurate rms noise measurement, r, for the region in question must be supplied. Alternatively, a sufficiently large signal-free region must be present in the selected region (at least about 25 noise beams in area) to auto-derive such an estimate. * If the image noise is not statistically independent from pixel to pixel, a reasonably accurate noise correlation scale, N, must be provided. If the noise correlation function is not approximately Gaussian, the correlation length can be estimated using N = sqrt(2*ln(2)/pi)* double-integral(dx dy C(x,y))/sqrt(double-integral(dx dy C(x, y) * C(x,y))) where C(x,y) is the associated noise-smoothing function * If fitted model components have significan spatial overlap, the parameter uncertainties are likely to be mis-estimated (i.e., correlations between the parameters of separate components are not accounted for). * If the image being analyzed is an interferometric image with poor uv sampling, the parameter uncertainties may be significantly underestimated. The deconvolved size and position angle errors are computed by taking the maximum of the absolute values of the differences of the best fit deconvolved value of the given parameter and the deconvolved size of the eight possible combinations of (FWHM major axis +/- major axis error), (FWHM minor axis +/- minor axis error), and (position andle +/- position angle error). If the source cannot be deconvolved from the beam (if the best fit convolved source size cannot be deconvolved from the beam), upper limits on the deconvolved source size are sometimes reported. These limits simply come from the maximum major and minor axes of the deconvolved gaussians taken from trying all eight of the aforementioned combinations. In the case none of these combinations produces a deconvolved size, no upper limit is reported. EXAMPLE: Here is how one might fit two gaussians to multiple channels of a cube using the fit from the previous channel as the initial estimate for the next. It also illustrates how one can specify a region in the associated continuum image as the region to use as the fit for the channel. begin{verbatim} default imfit imagename = "co_cube.im" # specify region using region from continuum region = "continuum.im:source.rgn" chans = "2~20" # only use pixels with positive values in the fit excludepix = [-1e10,0] # estimates file contains initial parameters for two Gaussians in channel 2 estimates = "initial_estimates.txt" logfile = "co_fit.log" # append results to the log file for all the channels append = "True" imfit() """
[docs] _info_group_ = """analysis"""
[docs] _info_desc_ = """Fit one or more elliptical Gaussian components on an image region(s)"""
[docs] __schema = {'imagefiles': {'type': 'cReqPathVec', 'coerce': [_coerce.to_list,_coerce.expand_pathvec]}, 'ncpu': {'type': 'cInt'}, 'doreg': {'type': 'cBool'}, 'ephemfile': {'type': 'cStr', 'coerce': _coerce.to_str}, 'timestamps': {'type': 'cStrVec', 'coerce': [_coerce.to_list,_coerce.to_strvec]}, 'msinfofile': {'type': 'cStr', 'coerce': _coerce.to_str}, 'box': {'type': 'cStr', 'coerce': _coerce.to_str}, 'region': {'type': 'cVariant', 'coerce': [_coerce.to_variant]}, 'chans': {'type': 'cVariant', 'coerce': [_coerce.to_variant]}, 'stokes': {'type': 'cStr', 'coerce': _coerce.to_str}, 'mask': {'type': 'cStr', 'coerce': _coerce.to_str}, 'includepix': {'type': 'cIntVec', 'coerce': [_coerce.to_list,_coerce.to_intvec]}, 'excludepix': {'type': 'cIntVec', 'coerce': [_coerce.to_list,_coerce.to_intvec]}, 'residual': {'type': 'cStr', 'coerce': _coerce.to_str}, 'model': {'type': 'cStr', 'coerce': _coerce.to_str}, 'estimates': {'type': 'cStr', 'coerce': _coerce.to_str}, 'logfile': {'type': 'cStr', 'coerce': _coerce.to_str}, 'append': {'type': 'cBool'}, 'newestimates': {'type': 'cStr', 'coerce': _coerce.to_str}, 'complist': {'type': 'cStr', 'coerce': _coerce.to_str}, 'overwrite': {'type': 'cBool'}, 'dooff': {'type': 'cBool'}, 'offset': {'type': 'cFloat', 'coerce': _coerce.to_float}, 'fixoffset': {'type': 'cBool'}, 'stretch': {'type': 'cBool'}, 'rms': {'anyof': [{'type': 'cInt'}, {'type': 'cFloat', 'coerce': _coerce.to_float}, {'type': 'cDict'}, {'type': 'cStr', 'coerce': _coerce.to_str}]}, 'noisefwhm': {'anyof': [{'type': 'cInt'}, {'type': 'cFloat', 'coerce': _coerce.to_float}, {'type': 'cDict'}, {'type': 'cStr', 'coerce': _coerce.to_str}]}, 'summary': {'type': 'cStr', 'coerce': _coerce.to_str}}
def __init__(self):
[docs] self.__stdout = None
[docs] self.__stderr = None
[docs] self.__root_frame_ = None
[docs] def __globals_(self): if self.__root_frame_ is None: self.__root_frame_ = _find_frame( ) assert self.__root_frame_ is not None, "could not find CASAshell global frame" return self.__root_frame_
[docs] def __to_string_(self,value): if type(value) is str: return "'%s'" % value else: return str(value)
[docs] def __validate_(self,doc,schema): return _pc.validate(doc,schema)
[docs] def __do_inp_output(self,param_prefix,description_str,formatting_chars): out = self.__stdout or sys.stdout description = description_str.split( ) prefix_width = 23 + 13 + 4 output = [ ] addon = '' first_addon = True while len(description) > 0: ## starting a new line..................................................................... if len(output) == 0: ## for first line add parameter information............................................ if len(param_prefix)-formatting_chars > prefix_width - 1: output.append(param_prefix) continue addon = param_prefix + ' #' first_addon = True addon_formatting = formatting_chars else: ## for subsequent lines space over prefix width........................................ addon = (' ' * prefix_width) + '#' first_addon = False addon_formatting = 0 ## if first word of description puts us over the screen width, bail........................ if len(addon + description[0]) - addon_formatting + 1 > self.term_width: ## if we're doing the first line make sure it's output................................. if first_addon: output.append(addon) break while len(description) > 0: ## if the next description word puts us over break for the next line................... if len(addon + description[0]) - addon_formatting + 1 > self.term_width: break addon = addon + ' ' + description[0] description.pop(0) output.append(addon) out.write('\n'.join(output) + '\n')
#--------- return nonsubparam values ----------------------------------------------
[docs] def __noisefwhm_dflt( self, glb ): return ''
[docs] def __noisefwhm( self, glb ): if 'noisefwhm' in glb: return glb['noisefwhm'] return ''
[docs] def __includepix_dflt( self, glb ): return [ ]
[docs] def __includepix( self, glb ): if 'includepix' in glb: return glb['includepix'] return [ ]
[docs] def __rms_dflt( self, glb ): return int(0)
[docs] def __rms( self, glb ): if 'rms' in glb: return glb['rms'] return int(0)
[docs] def __estimates_dflt( self, glb ): return ''
[docs] def __estimates( self, glb ): if 'estimates' in glb: return glb['estimates'] return ''
[docs] def __summary_dflt( self, glb ): return ''
[docs] def __summary( self, glb ): if 'summary' in glb: return glb['summary'] return ''
[docs] def __newestimates_dflt( self, glb ): return ''
[docs] def __newestimates( self, glb ): if 'newestimates' in glb: return glb['newestimates'] return ''
[docs] def __model_dflt( self, glb ): return ''
[docs] def __model( self, glb ): if 'model' in glb: return glb['model'] return ''
[docs] def __logfile_dflt( self, glb ): return ''
[docs] def __logfile( self, glb ): if 'logfile' in glb: return glb['logfile'] return ''
[docs] def __dooff_dflt( self, glb ): return False
[docs] def __dooff( self, glb ): if 'dooff' in glb: return glb['dooff'] return False
[docs] def __mask_dflt( self, glb ): return ''
[docs] def __mask( self, glb ): if 'mask' in glb: return glb['mask'] return ''
[docs] def __residual_dflt( self, glb ): return ''
[docs] def __residual( self, glb ): if 'residual' in glb: return glb['residual'] return ''
[docs] def __ncpu_dflt( self, glb ): return int(8)
[docs] def __ncpu( self, glb ): if 'ncpu' in glb: return glb['ncpu'] return int(8)
[docs] def __stokes_dflt( self, glb ): return ''
[docs] def __stokes( self, glb ): if 'stokes' in glb: return glb['stokes'] return ''
[docs] def __region_dflt( self, glb ): return ''
[docs] def __region( self, glb ): if 'region' in glb: return glb['region'] return ''
[docs] def __excludepix_dflt( self, glb ): return [ ]
[docs] def __excludepix( self, glb ): if 'excludepix' in glb: return glb['excludepix'] return [ ]
[docs] def __chans_dflt( self, glb ): return ''
[docs] def __chans( self, glb ): if 'chans' in glb: return glb['chans'] return ''
[docs] def __imagefiles_dflt( self, glb ): return [ ]
[docs] def __imagefiles( self, glb ): if 'imagefiles' in glb: return glb['imagefiles'] return [ ]
[docs] def __complist_dflt( self, glb ): return ''
[docs] def __complist( self, glb ): if 'complist' in glb: return glb['complist'] return ''
[docs] def __box_dflt( self, glb ): return ''
[docs] def __box( self, glb ): if 'box' in glb: return glb['box'] return ''
[docs] def __doreg_dflt( self, glb ): return False
[docs] def __doreg( self, glb ): if 'doreg' in glb: return glb['doreg'] return False
#--------- return inp/go default --------------------------------------------------
[docs] def __timestamps_dflt( self, glb ): if self.__doreg( glb ) == bool(True): return [] return None
[docs] def __stretch_dflt( self, glb ): if self.__mask( glb ) != "": return bool(False) return None
[docs] def __offset_dflt( self, glb ): if self.__dooff( glb ) != bool(False): return float(0.0) return None
[docs] def __msinfofile_dflt( self, glb ): if self.__doreg( glb ) == bool(True): return "" return None
[docs] def __ephemfile_dflt( self, glb ): if self.__doreg( glb ) == bool(True): return "" return None
[docs] def __overwrite_dflt( self, glb ): if self.__complist( glb ) != "": return bool(False) return None
[docs] def __fixoffset_dflt( self, glb ): if self.__dooff( glb ) != bool(False): return bool(False) return None
[docs] def __append_dflt( self, glb ): if self.__logfile( glb ) != "": return bool(True) return None
#--------- return subparam values -------------------------------------------------
[docs] def __ephemfile( self, glb ): if 'ephemfile' in glb: return glb['ephemfile'] dflt = self.__ephemfile_dflt( glb ) if dflt is not None: return dflt return ''
[docs] def __timestamps( self, glb ): if 'timestamps' in glb: return glb['timestamps'] dflt = self.__timestamps_dflt( glb ) if dflt is not None: return dflt return [ ]
[docs] def __msinfofile( self, glb ): if 'msinfofile' in glb: return glb['msinfofile'] dflt = self.__msinfofile_dflt( glb ) if dflt is not None: return dflt return ''
[docs] def __append( self, glb ): if 'append' in glb: return glb['append'] dflt = self.__append_dflt( glb ) if dflt is not None: return dflt return True
[docs] def __overwrite( self, glb ): if 'overwrite' in glb: return glb['overwrite'] dflt = self.__overwrite_dflt( glb ) if dflt is not None: return dflt return False
[docs] def __offset( self, glb ): if 'offset' in glb: return glb['offset'] dflt = self.__offset_dflt( glb ) if dflt is not None: return dflt return float(0.0)
[docs] def __fixoffset( self, glb ): if 'fixoffset' in glb: return glb['fixoffset'] dflt = self.__fixoffset_dflt( glb ) if dflt is not None: return dflt return False
[docs] def __stretch( self, glb ): if 'stretch' in glb: return glb['stretch'] dflt = self.__stretch_dflt( glb ) if dflt is not None: return dflt return False
#--------- subparam inp output ----------------------------------------------------
[docs] def __imagefiles_inp(self): description = '' value = self.__imagefiles( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'imagefiles': value},{'imagefiles': self.__schema['imagefiles']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('%-13.13s = %s%-23s%s' % ('imagefiles',pre,self.__to_string_(value),post),description,0+len(pre)+len(post))
[docs] def __ncpu_inp(self): description = '' value = self.__ncpu( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'ncpu': value},{'ncpu': self.__schema['ncpu']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('%-13.13s = %s%-23s%s' % ('ncpu',pre,self.__to_string_(value),post),description,0+len(pre)+len(post))
[docs] def __doreg_inp(self): description = '' value = self.__doreg( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'doreg': value},{'doreg': self.__schema['doreg']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('\x1B[1m\x1B[47m%-13.13s =\x1B[0m %s%-23s%s' % ('doreg',pre,self.__to_string_(value),post),description,13+len(pre)+len(post))
[docs] def __ephemfile_inp(self): if self.__ephemfile_dflt( self.__globals_( ) ) is not None: description = '' value = self.__ephemfile( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'ephemfile': value},{'ephemfile': self.__schema['ephemfile']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output(' \x1B[92m%-10.10s =\x1B[0m %s%-23s%s' % ('ephemfile',pre,self.__to_string_(value),post),description,9+len(pre)+len(post))
[docs] def __timestamps_inp(self): if self.__timestamps_dflt( self.__globals_( ) ) is not None: description = '' value = self.__timestamps( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'timestamps': value},{'timestamps': self.__schema['timestamps']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output(' \x1B[92m%-10.10s =\x1B[0m %s%-23s%s' % ('timestamps',pre,self.__to_string_(value),post),description,9+len(pre)+len(post))
[docs] def __msinfofile_inp(self): if self.__msinfofile_dflt( self.__globals_( ) ) is not None: description = '' value = self.__msinfofile( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'msinfofile': value},{'msinfofile': self.__schema['msinfofile']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output(' \x1B[92m%-10.10s =\x1B[0m %s%-23s%s' % ('msinfofile',pre,self.__to_string_(value),post),description,9+len(pre)+len(post))
[docs] def __box_inp(self): description = '' value = self.__box( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'box': value},{'box': self.__schema['box']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('%-13.13s = %s%-23s%s' % ('box',pre,self.__to_string_(value),post),description,0+len(pre)+len(post))
[docs] def __region_inp(self): description = '' value = self.__region( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'region': value},{'region': self.__schema['region']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('%-13.13s = %s%-23s%s' % ('region',pre,self.__to_string_(value),post),description,0+len(pre)+len(post))
[docs] def __chans_inp(self): description = '' value = self.__chans( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'chans': value},{'chans': self.__schema['chans']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('%-13.13s = %s%-23s%s' % ('chans',pre,self.__to_string_(value),post),description,0+len(pre)+len(post))
[docs] def __stokes_inp(self): description = '' value = self.__stokes( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'stokes': value},{'stokes': self.__schema['stokes']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('%-13.13s = %s%-23s%s' % ('stokes',pre,self.__to_string_(value),post),description,0+len(pre)+len(post))
[docs] def __mask_inp(self): description = '' value = self.__mask( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'mask': value},{'mask': self.__schema['mask']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('\x1B[1m\x1B[47m%-13.13s =\x1B[0m %s%-23s%s' % ('mask',pre,self.__to_string_(value),post),description,13+len(pre)+len(post))
[docs] def __includepix_inp(self): description = '' value = self.__includepix( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'includepix': value},{'includepix': self.__schema['includepix']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('%-13.13s = %s%-23s%s' % ('includepix',pre,self.__to_string_(value),post),description,0+len(pre)+len(post))
[docs] def __excludepix_inp(self): description = '' value = self.__excludepix( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'excludepix': value},{'excludepix': self.__schema['excludepix']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('%-13.13s = %s%-23s%s' % ('excludepix',pre,self.__to_string_(value),post),description,0+len(pre)+len(post))
[docs] def __residual_inp(self): description = '' value = self.__residual( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'residual': value},{'residual': self.__schema['residual']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('%-13.13s = %s%-23s%s' % ('residual',pre,self.__to_string_(value),post),description,0+len(pre)+len(post))
[docs] def __model_inp(self): description = '' value = self.__model( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'model': value},{'model': self.__schema['model']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('%-13.13s = %s%-23s%s' % ('model',pre,self.__to_string_(value),post),description,0+len(pre)+len(post))
[docs] def __estimates_inp(self): description = '' value = self.__estimates( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'estimates': value},{'estimates': self.__schema['estimates']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('%-13.13s = %s%-23s%s' % ('estimates',pre,self.__to_string_(value),post),description,0+len(pre)+len(post))
[docs] def __logfile_inp(self): description = '' value = self.__logfile( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'logfile': value},{'logfile': self.__schema['logfile']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('\x1B[1m\x1B[47m%-13.13s =\x1B[0m %s%-23s%s' % ('logfile',pre,self.__to_string_(value),post),description,13+len(pre)+len(post))
[docs] def __append_inp(self): if self.__append_dflt( self.__globals_( ) ) is not None: description = '' value = self.__append( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'append': value},{'append': self.__schema['append']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output(' \x1B[92m%-10.10s =\x1B[0m %s%-23s%s' % ('append',pre,self.__to_string_(value),post),description,9+len(pre)+len(post))
[docs] def __newestimates_inp(self): description = '' value = self.__newestimates( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'newestimates': value},{'newestimates': self.__schema['newestimates']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('%-13.13s = %s%-23s%s' % ('newestimates',pre,self.__to_string_(value),post),description,0+len(pre)+len(post))
[docs] def __complist_inp(self): description = '' value = self.__complist( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'complist': value},{'complist': self.__schema['complist']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('\x1B[1m\x1B[47m%-13.13s =\x1B[0m %s%-23s%s' % ('complist',pre,self.__to_string_(value),post),description,13+len(pre)+len(post))
[docs] def __overwrite_inp(self): if self.__overwrite_dflt( self.__globals_( ) ) is not None: description = '' value = self.__overwrite( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'overwrite': value},{'overwrite': self.__schema['overwrite']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output(' \x1B[92m%-10.10s =\x1B[0m %s%-23s%s' % ('overwrite',pre,self.__to_string_(value),post),description,9+len(pre)+len(post))
[docs] def __dooff_inp(self): description = '' value = self.__dooff( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'dooff': value},{'dooff': self.__schema['dooff']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('\x1B[1m\x1B[47m%-13.13s =\x1B[0m %s%-23s%s' % ('dooff',pre,self.__to_string_(value),post),description,13+len(pre)+len(post))
[docs] def __offset_inp(self): if self.__offset_dflt( self.__globals_( ) ) is not None: description = '' value = self.__offset( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'offset': value},{'offset': self.__schema['offset']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output(' \x1B[92m%-10.10s =\x1B[0m %s%-23s%s' % ('offset',pre,self.__to_string_(value),post),description,9+len(pre)+len(post))
[docs] def __fixoffset_inp(self): if self.__fixoffset_dflt( self.__globals_( ) ) is not None: description = '' value = self.__fixoffset( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'fixoffset': value},{'fixoffset': self.__schema['fixoffset']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output(' \x1B[92m%-10.10s =\x1B[0m %s%-23s%s' % ('fixoffset',pre,self.__to_string_(value),post),description,9+len(pre)+len(post))
[docs] def __stretch_inp(self): if self.__stretch_dflt( self.__globals_( ) ) is not None: description = '' value = self.__stretch( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'stretch': value},{'stretch': self.__schema['stretch']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output(' \x1B[92m%-10.10s =\x1B[0m %s%-23s%s' % ('stretch',pre,self.__to_string_(value),post),description,9+len(pre)+len(post))
[docs] def __rms_inp(self): description = '' value = self.__rms( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'rms': value},{'rms': self.__schema['rms']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('%-13.13s = %s%-23s%s' % ('rms',pre,self.__to_string_(value),post),description,0+len(pre)+len(post))
[docs] def __noisefwhm_inp(self): description = '' value = self.__noisefwhm( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'noisefwhm': value},{'noisefwhm': self.__schema['noisefwhm']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('%-13.13s = %s%-23s%s' % ('noisefwhm',pre,self.__to_string_(value),post),description,0+len(pre)+len(post))
[docs] def __summary_inp(self): description = '' value = self.__summary( self.__globals_( ) ) (pre,post) = ('','') if self.__validate_({'summary': value},{'summary': self.__schema['summary']}) else ('\x1B[91m','\x1B[0m') self.__do_inp_output('%-13.13s = %s%-23s%s' % ('summary',pre,self.__to_string_(value),post),description,0+len(pre)+len(post))
#--------- global default implementation------------------------------------------- @static_var('state', __sf__('casa_inp_go_state'))
[docs] def set_global_defaults(self): self.set_global_defaults.state['last'] = self glb = self.__globals_( ) if 'stokes' in glb: del glb['stokes'] if 'complist' in glb: del glb['complist'] if 'residual' in glb: del glb['residual'] if 'doreg' in glb: del glb['doreg'] if 'mask' in glb: del glb['mask'] if 'model' in glb: del glb['model'] if 'timestamps' in glb: del glb['timestamps'] if 'estimates' in glb: del glb['estimates'] if 'stretch' in glb: del glb['stretch'] if 'imagefiles' in glb: del glb['imagefiles'] if 'noisefwhm' in glb: del glb['noisefwhm'] if 'logfile' in glb: del glb['logfile'] if 'dooff' in glb: del glb['dooff'] if 'rms' in glb: del glb['rms'] if 'offset' in glb: del glb['offset'] if 'msinfofile' in glb: del glb['msinfofile'] if 'ephemfile' in glb: del glb['ephemfile'] if 'ncpu' in glb: del glb['ncpu'] if 'chans' in glb: del glb['chans'] if 'region' in glb: del glb['region'] if 'newestimates' in glb: del glb['newestimates'] if 'box' in glb: del glb['box'] if 'overwrite' in glb: del glb['overwrite'] if 'fixoffset' in glb: del glb['fixoffset'] if 'excludepix' in glb: del glb['excludepix'] if 'summary' in glb: del glb['summary'] if 'includepix' in glb: del glb['includepix'] if 'append' in glb: del glb['append']
#--------- inp function -----------------------------------------------------------
[docs] def inp(self): print("# pimfit -- %s" % self._info_desc_) self.term_width, self.term_height = shutil.get_terminal_size(fallback=(80, 24)) self.__imagefiles_inp( ) self.__ncpu_inp( ) self.__doreg_inp( ) self.__ephemfile_inp( ) self.__timestamps_inp( ) self.__msinfofile_inp( ) self.__box_inp( ) self.__region_inp( ) self.__chans_inp( ) self.__stokes_inp( ) self.__mask_inp( ) self.__includepix_inp( ) self.__excludepix_inp( ) self.__residual_inp( ) self.__model_inp( ) self.__estimates_inp( ) self.__logfile_inp( ) self.__append_inp( ) self.__newestimates_inp( ) self.__complist_inp( ) self.__overwrite_inp( ) self.__dooff_inp( ) self.__offset_inp( ) self.__fixoffset_inp( ) self.__stretch_inp( ) self.__rms_inp( ) self.__noisefwhm_inp( ) self.__summary_inp( )
#--------- tget function ---------------------------------------------------------- @static_var('state', __sf__('casa_inp_go_state'))
[docs] def tget(self,file=None): from casashell.private.stack_manip import find_frame from runpy import run_path filename = None if file is None: if os.path.isfile("pimfit.last"): filename = "pimfit.last" elif isinstance(file, str): if os.path.isfile(file): filename = file if filename is not None: glob = find_frame( ) newglob = run_path( filename, init_globals={ } ) for i in newglob: glob[i] = newglob[i] self.tget.state['last'] = self else: print("could not find last file, setting defaults instead...") self.set_global_defaults( )
[docs] def __call__( self, imagefiles=None, ncpu=None, doreg=None, ephemfile=None, timestamps=None, msinfofile=None, box=None, region=None, chans=None, stokes=None, mask=None, includepix=None, excludepix=None, residual=None, model=None, estimates=None, logfile=None, append=None, newestimates=None, complist=None, overwrite=None, dooff=None, offset=None, fixoffset=None, stretch=None, rms=None, noisefwhm=None, summary=None ): def noobj(s): if s.startswith('<') and s.endswith('>'): return "None" else: return s _prefile = os.path.realpath('pimfit.pre') _postfile = os.path.realpath('pimfit.last') _return_result_ = None _arguments = [imagefiles,ncpu,doreg,ephemfile,timestamps,msinfofile,box,region,chans,stokes,mask,includepix,excludepix,residual,model,estimates,logfile,append,newestimates,complist,overwrite,dooff,offset,fixoffset,stretch,rms,noisefwhm,summary] _invocation_parameters = OrderedDict( ) if any(map(lambda x: x is not None,_arguments)): # invoke python style # set the non sub-parameters that are not None local_global = { } if imagefiles is not None: local_global['imagefiles'] = imagefiles if ncpu is not None: local_global['ncpu'] = ncpu if doreg is not None: local_global['doreg'] = doreg if box is not None: local_global['box'] = box if region is not None: local_global['region'] = region if chans is not None: local_global['chans'] = chans if stokes is not None: local_global['stokes'] = stokes if mask is not None: local_global['mask'] = mask if includepix is not None: local_global['includepix'] = includepix if excludepix is not None: local_global['excludepix'] = excludepix if residual is not None: local_global['residual'] = residual if model is not None: local_global['model'] = model if estimates is not None: local_global['estimates'] = estimates if logfile is not None: local_global['logfile'] = logfile if newestimates is not None: local_global['newestimates'] = newestimates if complist is not None: local_global['complist'] = complist if dooff is not None: local_global['dooff'] = dooff if rms is not None: local_global['rms'] = rms if noisefwhm is not None: local_global['noisefwhm'] = noisefwhm if summary is not None: local_global['summary'] = summary # the invocation parameters for the non-subparameters can now be set - this picks up those defaults _invocation_parameters['imagefiles'] = self.__imagefiles( local_global ) _invocation_parameters['ncpu'] = self.__ncpu( local_global ) _invocation_parameters['doreg'] = self.__doreg( local_global ) _invocation_parameters['box'] = self.__box( local_global ) _invocation_parameters['region'] = self.__region( local_global ) _invocation_parameters['chans'] = self.__chans( local_global ) _invocation_parameters['stokes'] = self.__stokes( local_global ) _invocation_parameters['mask'] = self.__mask( local_global ) _invocation_parameters['includepix'] = self.__includepix( local_global ) _invocation_parameters['excludepix'] = self.__excludepix( local_global ) _invocation_parameters['residual'] = self.__residual( local_global ) _invocation_parameters['model'] = self.__model( local_global ) _invocation_parameters['estimates'] = self.__estimates( local_global ) _invocation_parameters['logfile'] = self.__logfile( local_global ) _invocation_parameters['newestimates'] = self.__newestimates( local_global ) _invocation_parameters['complist'] = self.__complist( local_global ) _invocation_parameters['dooff'] = self.__dooff( local_global ) _invocation_parameters['rms'] = self.__rms( local_global ) _invocation_parameters['noisefwhm'] = self.__noisefwhm( local_global ) _invocation_parameters['summary'] = self.__summary( local_global ) # the sub-parameters can then be set. Use the supplied value if not None, else the function, which gets the appropriate default _invocation_parameters['ephemfile'] = self.__ephemfile( _invocation_parameters ) if ephemfile is None else ephemfile _invocation_parameters['timestamps'] = self.__timestamps( _invocation_parameters ) if timestamps is None else timestamps _invocation_parameters['msinfofile'] = self.__msinfofile( _invocation_parameters ) if msinfofile is None else msinfofile _invocation_parameters['append'] = self.__append( _invocation_parameters ) if append is None else append _invocation_parameters['overwrite'] = self.__overwrite( _invocation_parameters ) if overwrite is None else overwrite _invocation_parameters['offset'] = self.__offset( _invocation_parameters ) if offset is None else offset _invocation_parameters['fixoffset'] = self.__fixoffset( _invocation_parameters ) if fixoffset is None else fixoffset _invocation_parameters['stretch'] = self.__stretch( _invocation_parameters ) if stretch is None else stretch else: # invoke with inp/go semantics _invocation_parameters['imagefiles'] = self.__imagefiles( self.__globals_( ) ) _invocation_parameters['ncpu'] = self.__ncpu( self.__globals_( ) ) _invocation_parameters['doreg'] = self.__doreg( self.__globals_( ) ) _invocation_parameters['ephemfile'] = self.__ephemfile( self.__globals_( ) ) _invocation_parameters['timestamps'] = self.__timestamps( self.__globals_( ) ) _invocation_parameters['msinfofile'] = self.__msinfofile( self.__globals_( ) ) _invocation_parameters['box'] = self.__box( self.__globals_( ) ) _invocation_parameters['region'] = self.__region( self.__globals_( ) ) _invocation_parameters['chans'] = self.__chans( self.__globals_( ) ) _invocation_parameters['stokes'] = self.__stokes( self.__globals_( ) ) _invocation_parameters['mask'] = self.__mask( self.__globals_( ) ) _invocation_parameters['includepix'] = self.__includepix( self.__globals_( ) ) _invocation_parameters['excludepix'] = self.__excludepix( self.__globals_( ) ) _invocation_parameters['residual'] = self.__residual( self.__globals_( ) ) _invocation_parameters['model'] = self.__model( self.__globals_( ) ) _invocation_parameters['estimates'] = self.__estimates( self.__globals_( ) ) _invocation_parameters['logfile'] = self.__logfile( self.__globals_( ) ) _invocation_parameters['append'] = self.__append( self.__globals_( ) ) _invocation_parameters['newestimates'] = self.__newestimates( self.__globals_( ) ) _invocation_parameters['complist'] = self.__complist( self.__globals_( ) ) _invocation_parameters['overwrite'] = self.__overwrite( self.__globals_( ) ) _invocation_parameters['dooff'] = self.__dooff( self.__globals_( ) ) _invocation_parameters['offset'] = self.__offset( self.__globals_( ) ) _invocation_parameters['fixoffset'] = self.__fixoffset( self.__globals_( ) ) _invocation_parameters['stretch'] = self.__stretch( self.__globals_( ) ) _invocation_parameters['rms'] = self.__rms( self.__globals_( ) ) _invocation_parameters['noisefwhm'] = self.__noisefwhm( self.__globals_( ) ) _invocation_parameters['summary'] = self.__summary( self.__globals_( ) ) try: with open(_prefile,'w') as _f: for _i in _invocation_parameters: _f.write("%-12s = %s\n" % (_i,noobj(repr(_invocation_parameters[_i])))) _f.write("#pimfit( ") count = 0 for _i in _invocation_parameters: _f.write("%s=%s" % (_i,noobj(repr(_invocation_parameters[_i])))) count += 1 if count < len(_invocation_parameters): _f.write(",") _f.write(" )\n") except: pass try: _return_result_ = _pimfit_t( _invocation_parameters['imagefiles'],_invocation_parameters['ncpu'],_invocation_parameters['doreg'],_invocation_parameters['ephemfile'],_invocation_parameters['timestamps'],_invocation_parameters['msinfofile'],_invocation_parameters['box'],_invocation_parameters['region'],_invocation_parameters['chans'],_invocation_parameters['stokes'],_invocation_parameters['mask'],_invocation_parameters['includepix'],_invocation_parameters['excludepix'],_invocation_parameters['residual'],_invocation_parameters['model'],_invocation_parameters['estimates'],_invocation_parameters['logfile'],_invocation_parameters['append'],_invocation_parameters['newestimates'],_invocation_parameters['complist'],_invocation_parameters['overwrite'],_invocation_parameters['dooff'],_invocation_parameters['offset'],_invocation_parameters['fixoffset'],_invocation_parameters['stretch'],_invocation_parameters['rms'],_invocation_parameters['noisefwhm'],_invocation_parameters['summary'] ) except Exception as e: from traceback import format_exc from casatasks import casalog casalog.origin('pimfit') casalog.post("Exception Reported: Error in pimfit: %s" % str(e),'SEVERE') casalog.post(format_exc( )) _return_result_ = False try: os.rename(_prefile,_postfile) except: pass return _return_result_
[docs] pimfit = _pimfit( )