Changeset 2112
- Timestamp:
- 04/06/11 19:08:59 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/asapplotter.py
r2106 r2112 1401 1401 # Now header will be printed on plot and/or logger. 1402 1402 # Get header information and format it. 1403 ssum=self._data._ _str__()1403 ssum=self._data._list_header() 1404 1404 # Print Observation header to the upper-left corner of plot 1405 1405 headstr=[ssum[ssum.find('Observer:'):ssum.find('Flux Unit:')]] … … 1409 1409 headstr[0]=extrastr+'\n'+headstr[0] 1410 1410 self._headtext['extrastr'] = extrastr 1411 if selstr != '': self._headtext['selstr'] = selstr 1411 if selstr != '': 1412 selstr += '\n' 1413 self._headtext['selstr'] = selstr 1412 1414 ssel=(selstr+self._data.get_selection().__str__()+self._selection.__str__() or 'none') 1413 1415 headstr.append('***Selections***\n'+ssel) … … 1427 1429 asaplog.push(extrastr) 1428 1430 asaplog.push(ssum[ssum.find('Beams:'):ssum.find('Selection:')]\ 1429 + selstr + ssum[ssum.find('Scan Source'):]) 1431 #+ selstr + ssum[ssum.find('Scan Source'):]) 1432 + selstr) 1430 1433 self._headtext['string'] = headstr 1431 1434 del ssel, ssum, headstr
Note:
See TracChangeset
for help on using the changeset viewer.