Trouble with NEURON 7.3
Posted: Sun Mar 24, 2013 6:00 pm
I've been using NEURON 7.3 for about a year now, and it worked quite well on my old computer. Unfortunately, that computer died, and on my new computer I can't get NEURON 7.3 to successfully run the same files that worked on my old computer. My new one is a Windows 7 machine, as was my old one. Today I installed NEURON 7.3 on my new machine using the file nrn-7.3.alpha-755.i686-pc-cygwin-setup.exe. When I tried to run one of my old files (which worked on NEURON 7.3 on my old computer), I got the following error:
nrniv: CellParamSet is not a template
in TGbignet2.tem near line 62
synCellSet = new CellParamSet() //reads in the cells.par into synCellSet
^
xopen("TGbignet2.tem" )
execute1("{xopen("TGbignet2.tem")}" )
load_file("./templates/TGbignet2.tem" )
nrniv: syntax error
in TGbignet2.tem near line 64
Npyr = synCellSet.cellSet.object(0).N
I am very confused by this error because it is being generated in the first few lines of my simulation:
The file manycells.tem defines the template CellParamSet, yet somehow when it is used in TGbignet2.tem, it generates an error. I'm not really sure where to go from here in troubleshooting this, since it seems obvious to me that I'm defining CellParamSet before it is used in TGbignet2. Thanks in advance for the help.
nrniv: CellParamSet is not a template
in TGbignet2.tem near line 62
synCellSet = new CellParamSet() //reads in the cells.par into synCellSet
^
xopen("TGbignet2.tem" )
execute1("{xopen("TGbignet2.tem")}" )
load_file("./templates/TGbignet2.tem" )
nrniv: syntax error
in TGbignet2.tem near line 64
Npyr = synCellSet.cellSet.object(0).N
I am very confused by this error because it is being generated in the first few lines of my simulation:
Code: Select all
{load_file("nrngui.hoc") } //I assume these libraries will load from the first /nrn path
{load_file("stdrun.hoc")}
{load_file("stdlib.hoc")}
{load_file("netparmpi.hoc")}
{load_file("./externals.hoc")}
{load_file("pyrkop.tem")}
{load_file("bwb.tem")}
{load_file("ok.tem")}
{load_file("../parameters/synapses.tem")}
{load_file("../parameters/manycells.tem")}
{load_file("./templates/TGbignet2.tem")}