Changeset 210 for trunk/python
- Timestamp:
- 01/18/05 17:48:30 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/__init__.py
r188 r210 9 9 from asapmath import * 10 10 from scantable import * 11 print "Initialising plotter..." 12 from asapplotter import * 13 plotter = asapplotter() 11 14 #from numarray ones,zeros 12 15 … … 27 30 28 31 def commands(): 29 x = """ 32 x = """ 30 33 [The scan container] 31 34 scantable - a container for integrations/scans … … 79 82 set if they should be held fixed during fitting 80 83 get_parameters - get the fitted parameters 84 [Plotter] 85 asapplotter - a plotter for asap, default plotter is 86 called 'plotter' 87 plot - plot a (list of) scantable 88 set_mode - set the state of the plotter, i.e. 89 what is to be plotted 'colour stacked' 90 and what 'panelled' 91 set_range - set the abcissa 'zoom' range 92 set_legend_map - specify user labels for the legend indeces 93 81 94 [Reading files] 82 95 reader - access rpfits/sdfits files … … 93 106 help - print help for one of the listed functions 94 107 execfile - execute an asap script, e.g. execfile('myscript') 108 Note: 109 How to use this with help: 110 # function 'summary' 111 [xxx] is just a category 112 Every 'sub-level' in this list should be replaces by a '.' Period when 113 using help 114 Example: 115 ASAP> help scantable # to get info on ths scantable 116 ASAP> help scantable.summary # to get help on the scantable's 117 ASAP> help average_time 118 95 119 """ 96 120 print x
Note:
See TracChangeset
for help on using the changeset viewer.