Ignore:
Timestamp:
03/01/05 12:40:30 (19 years ago)
Author:
kil064
Message:

make 'tint' weigting the default for average_time

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/asapmath.py

    r520 r524  
    1111        scanav:   True (default) averages each scan separately
    1212                  False averages all scans together,
    13         weight:   Weighting scheme. 'none' (default), 'var' (1/var(spec)
     13        weight:   Weighting scheme. 'none, 'var' (1/var(spec)
    1414                  weighted), 'tsys' (1/Tsys**2 weighted), or 'tint'
    15                   (integration time weighted)
     15                  (integration time weighted). The default is 'tint'
    1616    Example:
    1717        # return a time averaged scan from scana and scanb
     
    2626    if kwargs.has_key('scanav'):
    2727       scanAv = kwargs.get('scanav')
    28     weight = 'none'
     28    weight = 'tint'
    2929    if kwargs.has_key('weight'):
    3030       weight = kwargs.get('weight')
Note: See TracChangeset for help on using the changeset viewer.