Ignore:
Timestamp:
11/11/05 10:01:49 (19 years ago)
Author:
mar637
Message:

create_mask now also handles args[0]=list. auto_quotient checks for conformance between # of ons and offs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/__init__.py

    r706 r710  
    6161    'plotter.colours'     : ['', str],
    6262    'plotter.linestyles'  : ['', str],
    63    
     63    'plotter.decimate'    : [False, _validate_bool],
     64    'plotter.ganged'      : [True, _validate_bool],
     65
    6466    # scantable
    6567    'scantable.save'      : ['ASAP', str],
     
    8789
    8890    # plotting
    89    
     91
    9092    # do we want a GUI or plot to a file
    9193    plotter.gui                : True
    92    
     94
    9395    # default mode for colour stacking
    9496    plotter.stacking           : Pol
     
    9698    # default mode for panelling
    9799    plotter.panelling          : scan
     100
     101    # push panels together, to shar axislabels
     102    plotter.ganged             : True
    98103
    99104    # default colours/linestyles
     
    221226    return False
    222227
     228from asap._asap import LogSink as _asaplog
     229# use null sink if verbose==False
     230#asaplog=_asaplog(rcParams['verbose'])
     231asaplog=_asaplog()
     232global asaplog
    223233from asapfitter import *
    224234from asapreader import reader
     235
    225236from asapmath import *
     237from asap._asap import _math_setlog
     238_math_setlog(asaplog)
     239
    226240from scantable import *
    227241from asaplinefind import *
Note: See TracChangeset for help on using the changeset viewer.