CoreNEURON
nrnoc_aux.hpp
Go to the documentation of this file.
1 /*
2 # =============================================================================
3 # Copyright (c) 2016 - 2021 Blue Brain Project/EPFL
4 #
5 # See top-level LICENSE file for details.
6 # =============================================================================.
7 */
8 
9 #pragma once
10 
11 #include <cstddef>
13 
14 namespace coreneuron {
15 
16 extern int v_structure_change;
17 extern int diam_changed;
18 extern int structure_change_cnt;
19 
20 extern char* pnt_name(Point_process* pnt);
21 
22 extern void nrn_exit(int);
23 
24 extern void* emalloc(size_t size);
25 extern void* ecalloc(size_t n, size_t size);
26 extern void* erealloc(void* ptr, size_t size);
27 
28 extern double* makevector(size_t size); /* size in bytes */
29 extern double** makematrix(size_t nrow, size_t ncol);
30 void freevector(double*);
31 void freematrix(double**);
32 
33 extern void hoc_execerror(const char*, const char*); /* print and abort */
34 extern void hoc_warning(const char*, const char*);
35 
36 extern double hoc_Exp(double x);
37 } // namespace coreneuron
mechanism.hpp
coreneuron::ecalloc
void * ecalloc(size_t n, size_t size)
Definition: nrnoc_aux.cpp:85
coreneuron::pnt_name
char * pnt_name(Point_process *pnt)
Definition: nrnoc_aux.cpp:26
coreneuron::hoc_execerror
void hoc_execerror(const char *s1, const char *s2)
Definition: nrnoc_aux.cpp:39
coreneuron::hoc_warning
void hoc_warning(const char *s1, const char *s2)
Definition: nrnoc_aux.cpp:44
coreneuron::makematrix
double ** makematrix(size_t nrows, size_t ncols)
Definition: nrnoc_aux.cpp:58
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::makevector
double * makevector(size_t size)
Definition: nrnoc_aux.cpp:48
coreneuron::diam_changed
int diam_changed
Definition: nrnoc_aux.cpp:21
coreneuron::nrn_exit
void nrn_exit(int err)
Definition: nrnoc_aux.cpp:30
coreneuron::structure_change_cnt
int structure_change_cnt
coreneuron::v_structure_change
int v_structure_change
Definition: nrnoc_aux.cpp:20
coreneuron::hoc_Exp
double hoc_Exp(double x)
Definition: nrnoc_aux.cpp:109
coreneuron::emalloc
static void * emalloc(size_t size)
Definition: mpispike.cpp:30
coreneuron::erealloc
void * erealloc(void *ptr, size_t size)
Definition: nrnoc_aux.cpp:94
coreneuron::freevector
void freevector(double *p)
Definition: nrnoc_aux.cpp:52
coreneuron::freematrix
void freematrix(double **matrix)
Definition: nrnoc_aux.cpp:66