Changeset 113
- Timestamp:
- 02/12/08 19:35:50 (1 year ago)
- Files:
-
- trunk/INSTALL (modified) (1 diff)
- trunk/examples/single_neuron/simple_single_neuron.py (modified) (4 diffs)
- trunk/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/INSTALL
r106 r113 16 16 17 17 Note, here lib is replaced by lib64 on 64bit systems, and python2.4 is 18 (obviously) replaced by your python vers oin.18 (obviously) replaced by your python version. 19 19 20 20 trunk/examples/single_neuron/simple_single_neuron.py
r93 r113 11 11 Refactored to use the new NeuroTools-- Nov 2007 12 12 13 $ Id $ 13 $ Id $â 14 14 15 15 """ … … 18 18 import numpy 19 19 import sys, os, tempfile 20 # choosing the simulator 20 21 import pyNN.nest1 as sim 22 # the link to read SpikeList files with NeuroTools 21 23 from NeuroTools.spikes import loadSpikeList 24 # taking the template class for models 22 25 from NeuroTools.benchmark import Model 26 # using parameters utility 27 from NeuroTools.parameters import ParameterSet 23 28 24 29 class FiberChannel(Model): … … 38 43 'kernelseed' : 4321097, # array with one element per thread 39 44 'connectseed' : 12345789, # seed for random generator(s) used during simulation 45 'url_param' : "https://neuralensemble.org/svn/NeuroTools/trunk/muller_etal2007.param" 40 46 } 41 47 42 48 #cell_params = url() 43 49 44 50 def run(self,params): 45 46 51 tmpdir = tempfile.mkdtemp() 47 52 # === Build the network ======================================================== … … 112 117 from NeuroTools.plotting import raster_plot 113 118 raster_plot(output) 119 import pylab 120 pylab.show() trunk/setup.py
r107 r113 10 10 author = "The NeuralEnsemble Community", 11 11 author_email = "pynn@neuralensemble.org", 12 description = "A meta-simulator framework base on PyNN",12 description = "A meta-simulator framework based on PyNN", 13 13 license = "CeCILL", 14 keywords = "computational neuroscience simulation neuron nest pcsim neuroml",14 keywords = ('computational neuroscience', 'PyNN', 'simulation', 'neuron', 'nest', 'nest2', 'pcsim', 'neuroml'), 15 15 url = "http://neuralensemble.org/trac/NeuroTools", 16 16 )

