Ignore:
Timestamp:
08/17/11 10:54:03 (13 years ago)
Author:
Malte Marquarding
Message:

Created 3.1.0 release tag

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/asapplotter.py

    r2173 r2276  
    914914                n = min(n,self._rows*self._cols)
    915915                self._plotter.set_panels(rows=self._rows,cols=self._cols,
    916                                          nplots=n,margin=self._margins,ganged=ganged)
     916                                         nplots=n,margin=self._margins,
     917                                         ganged=ganged)
    917918            else:
    918919                n = min(n,maxpanel)
    919                 self._plotter.set_panels(rows=n,cols=0,nplots=n,margin=self._margins,ganged=ganged)
     920                self._plotter.set_panels(rows=n,cols=0,nplots=n,
     921                                         margin=self._margins,ganged=ganged)
    920922        else:
    921923            self._plotter.set_panels(margin=self._margins)
     
    972974                   
    973975            #if (b > b0 or newpanel) and stackcount < nstack:
    974             if stackcount < nstack and (newpanel or rowstack or (a == a0 and b > b0)):
     976            if stackcount < nstack and (newpanel or rowstack
     977                                        or (a == a0 and b > b0)):
    975978                y = []
    976979                if len(polmodes):
     
    980983                # flag application
    981984                mr = scan._getflagrow(r)
     985                #mr = False
    982986                from numpy import ma, array
    983987                if mr:
     
    987991                    from numpy import logical_not, logical_and
    988992                    if self._maskselection and len(self._usermask) == len(m):
    989                         if d[self._stacking](r) in self._maskselection[self._stacking]:
     993                        if d[self._stacking](r) in \
     994                                self._maskselection[self._stacking]:
    990995                            m = logical_and(m, self._usermask)
    991                     y = ma.masked_array(y,mask=logical_not(array(m,copy=False)))
     996                    y = ma.masked_array(y,mask=logical_not(array(m,
     997                                                                 copy=False)))
    992998
    993999                x = array(scan._getabcissa(r))
Note: See TracChangeset for help on using the changeset viewer.