Classes | |
class | hanningsmooth_pg_ |
Functions | |
def | defaults |
def paramgui(self, useGlobals=True): """ Opens a parameter GUI for this task. | |
def | check_params |
This function sets the default values but also will return the list of parameters or the default value of a given parameter. | |
def | description |
def | itsdefault |
Variables | |
tuple | hanningsmooth_pg |
def hanningsmooth_pg.check_params | ( | self, | |
param = None , |
|||
value = None |
|||
) |
This function sets the default values but also will return the list of parameters or the default value of a given parameter.
Definition at line 213 of file hanningsmooth_pg.py.
def hanningsmooth_pg.defaults | ( | self, | |
param = None |
|||
) |
def paramgui(self, useGlobals=True): """ Opens a parameter GUI for this task.
If useGlobals is true, then any relevant global parameter settings are used. """ import paramgui
a=inspect.stack() stacklevel=0 for k in range(len(a)): if (string.find(a[k][1], 'ipython console') > 0) or (string.find(a[k][1], '<string>') >= 0): stacklevel=k break myf = sys._getframe(stacklevel).f_globals
if useGlobals: paramgui.setGlobals(myf) else: paramgui.setGlobals({})
paramgui.runTask('hanningsmooth', myf['_ip']) paramgui.setGlobals({})
Definition at line 182 of file hanningsmooth_pg.py.
def hanningsmooth_pg.description | ( | self, | |
key = 'hanningsmooth' , |
|||
subkey = None |
|||
) |
Definition at line 249 of file hanningsmooth_pg.py.
def hanningsmooth_pg.itsdefault | ( | self, | |
paramname | |||
) |
Definition at line 261 of file hanningsmooth_pg.py.
Definition at line 269 of file hanningsmooth_pg.py.