Go to the documentation of this file.
44 static size_t read_raster_file(
const char* fname,
double** tvec,
int** gidvec,
double tstop);
63 printf(
"nrn_set_extra_thread_vdata must be called (after mk_mech, and before nrn_setup\n");
87 double* _p = ml->
data;
97 pattern_stim_setup_helper(size, tvec, gidvec, _iml, _cntml, _p, _ppvar,
nullptr, nt, ml, 0.0);
101 FILE* f = fopen(fname,
"r");
108 std::vector<std::pair<double, int>> spikes;
109 spikes.reserve(10000);
114 while (fscanf(f,
"%lf %d\n", &stime, &gid) == 2) {
115 if (stime >=
t && stime <= tstop) {
116 spikes.push_back(std::make_pair(stime, gid));
125 std::sort(spikes.begin(), spikes.end());
128 *tvec = (
double*)
emalloc(spikes.size() *
sizeof(double));
129 *gidvec = (
int*)
emalloc(spikes.size() *
sizeof(int));
131 for (
size_t i = 0;
i < spikes.size();
i++) {
132 (*tvec)[
i] = spikes[
i].first;
133 (*gidvec)[
i] = spikes[
i].second;
136 return spikes.size();
165 priv_ctor(nt, tml->
ml, tml->
index);
187 assert(nt->
_ml_list[type] ==
nullptr);
218 printf(
"nrn_artcell_instantiate cannot be called more than once\n");
236 for (
int i = 0;
i < dsize; ++
i) {
auto & get_mech_data_layout()
int nrn_get_mechtype(const char *name)
Get mechanism type by the mechanism name.
void * ecalloc(size_t n, size_t size)
Point_process * nrn_artcell_instantiate(const char *mechname)
auto & get_memb_func(size_t idx)
int nrn_soa_padded_size(int cnt, int layout)
calculate size after padding for specific memory layout
void nrn_set_extra_thread0_vdata()
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
auto & get_prop_dparam_size()
void pattern_stim_setup_helper(int size, double *tvec, int *gidvec, int icnt, int cnt, double *_p, Datum *_ppvar, ThreadDatum *_thread, NrnThread *_nt, Memb_list *ml, double v)
NetSendBuffer_t * _net_send_buffer
static size_t read_raster_file(const char *fname, double **tvec, int **gidvec, double tstop)
NetReceiveBuffer_t * _net_receive_buffer
static NrnThreadMembList * alloc_nrn_thread_memb(NrnThread *nt, int type)
void nrn_mkPatternStim(const char *fname, double tstop)
int nrn_extra_thread0_vdata
static void * emalloc(size_t size)
auto & get_prop_param_size()
#define nrn_assert(x)
assert()-like macro, independent of NDEBUG status