summaryrefslogtreecommitdiff
path: root/cad/src/analysis/ESP/NanoHive_SimParameters.py
blob: 65623789f342c927eb536ff4cb8723df1da3fe77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright 2005-2007 Nanorex, Inc.  See LICENSE file for details.
"""
NanoHive_SimParameters.py - provide class NanoHive_SimParameters

@author: Mark
@version: $Id$
@copyright: 2005-2007 Nanorex, Inc.  See LICENSE file for details.

History:

Bruce 071215 split this out of NanoHive.py to remove
an import cycle, and renamed its class NH_Sim_Parameters
to the same name as the module, NanoHive_SimParameters.

Module classification:

model; for ESP package.
[bruce 071215]

TODO:

Document the parameters.
"""

class NanoHive_SimParameters:
    """
    Hold parameters for a NanoHive simulation.
    (Parameters are externally set public attributes.)
    """
    pass

# end