Changeset 998
- Timestamp:
- 04/06/06 16:12:07 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/asapplotter.py
r964 r998 373 373 polmodes = dict(zip(self._selection.get_pols(),self._selection.get_poltypes())) 374 374 n,nstack = self._get_selected_n(scan) 375 maxpanel, maxstack = 9,4375 maxpanel, maxstack = 16,8 376 376 if n > maxpanel or nstack > maxstack: 377 377 from asap import asaplog … … 381 381 print_log() 382 382 n = min(n,maxpanel) 383 nstack = min(n ,maxstack)383 nstack = min(nstack,maxstack) 384 384 385 385 if n > 1: … … 399 399 newpanel=True 400 400 panelcount,stackcount = 0,0 401 while r < n r:401 while r < n*nstack: 402 402 a = d[self._panelling](r) 403 403 b = d[self._stacking](r) 404 # print r405 # print " a: ",a,a0,panelcount,n406 # print " b: ",b,b0,stackcount,nstack407 404 if a > a0 and panelcount < n: 408 405 if n > 1: … … 475 472 # ignore following rows 476 473 if (panelcount == n) and (stackcount == nstack): 477 pass#break474 break 478 475 r+=1 # next row 479 476 #reset the selector to the scantable's original
Note:
See TracChangeset
for help on using the changeset viewer.