- Timestamp:
- 08/22/06 11:31:51 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/asapplotter.py
r1158 r1164 462 462 y = line._y_orig[s] 463 463 maxys.append(ma.maximum(y)) 464 peak = max(maxys) 464 if len(maxys): 465 peak = max(maxys) 466 else: 467 print "DEBUG - ignoring line as spectrum was masked at this frequency" 468 continue 465 469 self._plotter.vline_with_label(freq, peak, 466 470 linecat.get_name(row),
Note:
See TracChangeset
for help on using the changeset viewer.