-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinit_gui.hoc
More file actions
54 lines (46 loc) · 1.5 KB
/
init_gui.hoc
File metadata and controls
54 lines (46 loc) · 1.5 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//------------ load src files -----------------
print "=========== init.hoc =============\n"
load_file("nrngui.hoc")
load_file("src/parameters.hoc")
load_file("src/createcells.hoc")
load_file("src/netconnection.hoc")
load_file("src/write.hoc")
//load_file("src/panel.hoc")
//load_file("src/panel2.hoc")
load_file("src/panel3.hoc")
//------------ Simulation Control -----------------
proc step() {
if (ENABLE_GRAPHICAL_INTERFACE) Plot()
fadvance()
}
proc init() {
finitialize()
fcurrent()
dt=step_dt
tstop = tstop
}
proc start() {
count=0
iclamps() // defined at createcells.hoc
noise() // defined at createcells.hoc
noise_set() // defined at createcells.hoc
Ribbon_syn() // defined at netconnection.hoc
Ribbon_syn_set() // defined at netconnection.hoc
Gly_syn() // defined at netconnection.hoc
Gly_syn_set() // defined at netconnection.hoc
AC_GJ() // defined at netconnection.hoc
AC_GJ_set() // defined at netconnection.hoc
OFFGC_GJ() // defined at netconnection.hoc
OFFGC_GJ_set() // defined at netconnection.hoc
ACBC_GJ() // defined at netconnection.hoc
ACBC_GJ_set() // defined at netconnection.hoc
ONCB_GJ() // defined at netconnection.hoc
ONCB_GJ_set() // defined at netconnection.hoc
OFFCB_GJ() // defined at netconnection.hoc
OFFCB_GJ_set() // defined at netconnection.hoc
states()
} // end proc start
init()
start()
make_panel()
load_file("src/init.ses")