Changeset 333 for trunk/src/common.py
- Timestamp:
- 06/05/08 10:43:57 (5 years ago)
- Files:
-
- 1 modified
-
trunk/src/common.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/common.py
r332 r333 359 359 class StandardCellType(StandardModelType): 360 360 """Base class for standardized cell model classes.""" 361 pass 361 362 synapse_types = ('excitatory', 'inhibitory') 362 363 363 364 … … 552 553 'duration' : 1e6 # Duration of spike sequence (ms) 553 554 } 554 555 synapse_types = () 555 556 556 557 class SpikeSourceInhGamma(StandardCellType): … … 570 571 'duration' : 1e6 # Duration of spike sequence (ms) 571 572 } 572 573 synapse_types = () 573 574 574 575 class SpikeSourceArray(StandardCellType): … … 576 577 577 578 default_parameters = { 'spike_times' : [] } # list or numpy array containing spike times in milliseconds. 579 synapse_types = () 578 580 579 581 def __init__(self, parameters):
