Package topo :: Package responsefn :: Module basic
[hide private]
[frames] | no frames]

Source Code for Module topo.responsefn.basic

 1  """ 
 2  Basic response functions. 
 3   
 4  $Id: basic.py 8981 2008-08-24 23:51:53Z ceball $ 
 5  """ 
 6  __version__='$Revision: 8981 $' 
 7   
 8  from topo.base.functionfamily import ResponseFn 
 9   
10  # Imported here so that all ResponseFns will be in the same package 
11  from topo.base.cf import DotProduct 
12   
13  __all__ = list(set([k for k,v in locals().items() 
14                      if isinstance(v,type) and issubclass(v,ResponseFn)])) 
15