Changeset 2130 for branches


Ignore:
Timestamp:
04/11/11 21:00:42 (13 years ago)
Author:
WataruKawasaki
Message:

merged bug fix from trunk (r2128)

Location:
branches/casa-prerelease/pre-asap
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • branches/casa-prerelease/pre-asap

    • Property svn:mergeinfo changed
      /trunkmerged: 2129
  • branches/casa-prerelease/pre-asap/Makefile

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/casa-prerelease/pre-asap/SConstruct

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/casa-prerelease/pre-asap/apps

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/casa-prerelease/pre-asap/external-alma

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/casa-prerelease/pre-asap/external-alma/atnf/pks/pks_maths.cc

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/casa-prerelease/pre-asap/getsvnrev.sh

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/casa-prerelease/pre-asap/python

  • branches/casa-prerelease/pre-asap/python/scantable.py

    r2095 r2130  
    20902090                           default is 1.0 (unit: spectral range).
    20912091            clipthresh:    Clipping threshold. (default is 3.0, unit: sigma)
    2092             clipniter:     maximum number of iteration of 'clipthresh'-sigma clipping (default is 1)
     2092            clipniter:     maximum number of iteration of 'clipthresh'-sigma clipping (default is 0)
    20932093            plot:      *** CURRENTLY UNAVAILABLE, ALWAYS FALSE ***
    20942094                           plot the fit and the residual. In this each
     
    21282128        if maxwavelength is None: maxwavelength = 1.0
    21292129        if clipthresh    is None: clipthresh    = 3.0
    2130         if clipniter     is None: clipniter     = 1
     2130        if clipniter     is None: clipniter     = 0
    21312131        if plot          is None: plot          = False
    21322132        if getresidual   is None: getresidual   = True
     
    21862186                           default is 1.0 (unit: spectral range).
    21872187            clipthresh:    Clipping threshold. (default is 3.0, unit: sigma)
    2188             clipniter:     maximum number of iteration of 'clipthresh'-sigma clipping (default is 1)
     2188            clipniter:     maximum number of iteration of 'clipthresh'-sigma clipping (default is 0)
    21892189            edge:          an optional number of channel to drop at
    21902190                           the edge of spectrum. If only one value is
     
    22412241        if maxwavelength  is None: maxwavelength  = 1.0
    22422242        if clipthresh     is None: clipthresh     = 3.0
    2243         if clipniter      is None: clipniter      = 1
     2243        if clipniter      is None: clipniter      = 0
    22442244        if edge           is None: edge           = (0,0)
    22452245        if threshold      is None: threshold      = 3
     
    23192319            npiece:     Number of pieces. (default is 2)
    23202320            clipthresh: Clipping threshold. (default is 3.0, unit: sigma)
    2321             clipniter:  maximum number of iteration of 'clipthresh'-sigma clipping (default is 1)
     2321            clipniter:  maximum number of iteration of 'clipthresh'-sigma clipping (default is 0)
    23222322            plot:   *** CURRENTLY UNAVAILABLE, ALWAYS FALSE ***
    23232323                        plot the fit and the residual. In this each
     
    23552355        if npiece      is None: npiece      = 2
    23562356        if clipthresh  is None: clipthresh  = 3.0
    2357         if clipniter   is None: clipniter   = 1
     2357        if clipniter   is None: clipniter   = 0
    23582358        if plot        is None: plot        = False
    23592359        if getresidual is None: getresidual = True
     
    24002400            npiece:     Number of pieces. (default is 2)
    24012401            clipthresh: Clipping threshold. (default is 3.0, unit: sigma)
    2402             clipniter:  maximum number of iteration of 'clipthresh'-sigma clipping (default is 1)
     2402            clipniter:  maximum number of iteration of 'clipthresh'-sigma clipping (default is 0)
    24032403            edge:       an optional number of channel to drop at
    24042404                        the edge of spectrum. If only one value is
     
    24552455        if npiece         is None: npiece         = 2
    24562456        if clipthresh     is None: clipthresh     = 3.0
    2457         if clipniter      is None: clipniter      = 1
     2457        if clipniter      is None: clipniter      = 0
    24582458        if edge           is None: edge           = (0, 0)
    24592459        if threshold      is None: threshold      = 3
  • branches/casa-prerelease/pre-asap/src

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/casa-prerelease/pre-asap/src/SConscript

    • Property svn:mergeinfo changed (with no actual effect on merging)
Note: See TracChangeset for help on using the changeset viewer.