Changeset 737
- Timestamp:
- 11/24/05 14:41:04 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/__init__.py
r733 r737 78 78 79 79 print """ 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 80 # general 81 # print verbose output 82 verbose : True 83 84 # preload a default plotter 85 useplotter : True 86 87 # apply operations on the input scantable or return new one 88 insitu : True 89 90 # plotting 91 92 # do we want a GUI or plot to a file 93 plotter.gui : True 94 95 # default mode for colour stacking 96 plotter.stacking : Pol 97 98 # default mode for panelling 99 plotter.panelling : scan 100 101 # push panels together, to share axislabels 102 plotter.ganged : True 103 104 # decimate the number of points plotted bya afactor of 105 # nchan/1024 106 plotter.decimate : False 107 108 # default colours/linestyles 109 plotter.colours : 110 plotter.linestyles : 111 112 # scantable 113 # default ouput format when saving 114 scantable.save : ASAP 115 # auto averaging on read 116 scantable.autoaverage : True 117 118 # default frequency frame to set when function 119 # scantable.set_freqfrmae is called 120 scantable.freqframe : LSRK 121 122 # apply action to all axes not just the cursor location 123 scantable.allaxes : True 124 125 # use internal plotter 126 scantable.plotter : True 127 128 # Control the level of information printed by summary 129 scantable.verbosesummary : False 130 131 # Fitter 132 """ 133 133 134 134 def rc_params():
Note:
See TracChangeset
for help on using the changeset viewer.