- Timestamp:
- 07/31/06 12:21:46 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/__init__.py
r1093 r1097 89 89 'plotter.ganged' : [True, _validate_bool], 90 90 'plotter.histogram' : [False, _validate_bool], 91 'plotter.papertype' : ['A4', str], 91 92 92 93 # scantable … … 137 138 plotter.histogram : False 138 139 140 # ps paper type 141 plotter.papertype : A4 142 139 143 # scantable 140 144 … … 147 151 148 152 # default frequency frame to set when function 149 # scantable.set_freqfr mae is called153 # scantable.set_freqframe is called 150 154 scantable.freqframe : LSRK 151 155 … … 315 319 return 316 320 317 from asapfitter import *321 from asapfitter import fitter as asapfitter 318 322 from asapreader import reader 319 323 from selector import selector … … 321 325 from asapmath import * 322 326 from scantable import scantable 323 from asaplinefind import *327 from asaplinefind import linefinder 324 328 #from asapfit import * 325 329 … … 329 333 330 334 if rcParams['useplotter']: 331 from asapplotter import *335 from asapplotter import asapplotter 332 336 gui = os.environ.has_key('DISPLAY') and rcParams['plotter.gui'] 333 337 plotter = asapplotter(gui)
Note:
See TracChangeset
for help on using the changeset viewer.