1 """
2 EventProcessor classes.
3
4 An EventProcessor is an object that the Simulation is aware of, and can
5 accept simulation Events. EventProcessors can also generate Events, and
6 will presumably do some computation as well. Most EventProcessors
7 will be in other more specific packages, such as topo.sheet; those
8 here are the remaining uncategorized EventProcessors. Any new
9 EventProcessors classes added to this directory will automatically
10 become available for any model.
11
12 $Id: __init__.py 8940 2008-08-21 13:36:59Z ceball $
13 """
14 __version__='$Revision: 8940 $'
15
16 import re,os
17 __all__ = [re.sub('\.py$','',f) for f in os.listdir(__path__[0])
18 if re.match('^[^_].*\.py$',f)]
19