forked from jealie/BCBG-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_sim.hpp
44 lines (38 loc) · 949 Bytes
/
run_sim.hpp
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
/* vim: set ft=cpp: */
#ifndef RUN_SIM_HPP
#define RUN_SIM_HPP
#include <list>
int _run_sim( // encapsulation for one channel nucleus
float max_duration,
float bunch_duration,
float dt,
std::vector<float> &activ,
std::vector<float> ¶ms,
std::vector<int> &delay,
std::vector<float> &means,
int verbose);
int _run_sim(
float max_duration,
float bunch_duration,
float dt,
std::vector<float> &activ,
std::vector<float> &cs,
std::vector<float> ¶ms,
std::vector<int> &delay,
std::vector<float> &means,
int verbose,
int ch_n,
int msn_separation,
int do_checks,
MemoryBCBG2& mem,
int integration_method);
int _run_sim_tsirogiannis_2010(
float max_duration,
float bunch_duration,
float dt,
std::vector<float> &activations,
std::vector<float> ¶ms,
std::vector<int> &delay,
std::vector<float> &means,
int verbose);
#endif