Changeset 1067


Ignore:
Timestamp:
Oct 14, 2013, 3:54:08 PM (11 years ago)
Author:
aslmd
Message:

planetoplot. added generic keyword logy in ppclass.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UTIL/PYTHON/planetoplot_v2/ppclass.py

    r1062 r1067  
    175175                      trans=None,back=None,\
    176176                      showcb=None,\
     177                      logy=None,\
    177178                      title=None):
    178179        self.request = None
     
    235236        self.trans = trans ; self.back = back
    236237        self.showcb = showcb
     238        self.logy = logy
    237239
    238240    # print status
     
    297299            self.trans = other.trans ; self.back = other.back
    298300            self.showcb = other.showcb
     301            self.logy = other.logy
    299302        else:
    300303            print "!! ERROR !! argument must be a pp object." ; exit()
     
    842845                    if self.fmt is not None: plobj.fmt = self.fmt
    843846                    if self.showcb is not None: plobj.showcb = self.showcb
     847                    if self.logy is not None: plobj.logy = self.logy
    844848                    # -- 1D specific
    845849                    if dp == 1:
Note: See TracChangeset for help on using the changeset viewer.