NEURON
hocmodl.h
Go to the documentation of this file.
2 extern int* hoc_pindepindex;
3 
4 static VoidFunc functions[] =
5  {"model", hoc_model, "initmodel", hoc_initmodel, "terminal", hoc_terminal, 0, 0};
6 
7 static struct { /* Integer Scalars */
8  char* name;
9  int* pint;
10 } scint[] = {0, 0};
11 
12 static struct { /* Vector integers */
13  char* name;
14  int* pint;
15  int index1;
16 } vint[] = {0, 0, 0};
17 
18 static DoubScal scdoub[] = {0, 0};
19 
20 static DoubVec vdoub[] = {0, 0, 0};
21 
22 static struct { /* Arrays */
23  char* name;
24  double* pdoub;
25  int index1;
26  int index2;
27 } ardoub[] = {0, 0, 0, 0};
28 
29 static struct { /* triple dimensioned arrays */
30  char* name;
31  double* pdoub;
32  int index1;
33  int index2;
34  int index3;
35 } thredim[] = {0, 0, 0, 0, 0};
void hoc_initmodel()
double * pdoub
Definition: hocmodl.h:24
void hoc_terminal()
int * pint
Definition: hocmodl.h:9
int index2
Definition: hocmodl.h:26
void hoc_prconst()
static struct @49 scint[]
int index3
Definition: hocmodl.h:34
int * hoc_pindepindex
static DoubScal scdoub[]
Definition: hocmodl.h:18
char * name
Definition: hocmodl.h:8
static VoidFunc functions[]
Definition: hocmodl.h:4
int index1
Definition: hocmodl.h:15
void hoc_model()
static struct @51 ardoub[]
static struct @52 thredim[]
static DoubVec vdoub[]
Definition: hocmodl.h:20
static struct @50 vint[]