- Timestamp:
- 11/04/10 17:10:43 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/asapplotter.py
r1927 r1944 905 905 stackcount = 0 906 906 panelcount += 1 907 if (b > b0 or newpanel) and stackcount < nstack: 907 #if (b > b0 or newpanel) and stackcount < nstack: 908 if stackcount < nstack and (newpanel or (a == a0 and b > b0)): 908 909 y = [] 909 910 if len(polmodes): … … 995 996 d0 = {'s': 'SCANNO', 'b': 'BEAMNO', 'i':'IFNO', 996 997 'p': 'POLNO', 'c': 'CYCLENO', 't' : 'TIME', 'r':None, '_r':None } 997 if not (type(lorders) == list) ornot (type(lorders) == tuple):998 if not (type(lorders) == list) and not (type(lorders) == tuple): 998 999 return None 999 1000 if len(lorders) > 0:
Note:
See TracChangeset
for help on using the changeset viewer.