1
1
#include < any>
2
2
#include < functional>
3
- #include < iomanip>
4
3
#include < iostream>
5
4
#include < string>
6
5
#include < tuple>
20
19
21
20
// Simulate a cell modelled as a simple cable with HH dynamics,
22
21
// emitting the results of a user specified probe over time.
23
-
24
- using std::any;
25
- using arb::util::any_cast;
26
22
namespace U = arb::units;
27
23
using namespace arb ::units::literals;
28
24
@@ -79,7 +75,7 @@ struct options {
79
75
double sim_dt = 0.025 ; // [ms]
80
76
double sample_dt = 1.0 ; // [ms]
81
77
unsigned n_cv = 10 ;
82
- any probe_addr;
78
+ std:: any probe_addr;
83
79
std::string value_name;
84
80
probe_kind kind = probe_kind::invalid;
85
81
};
@@ -105,9 +101,9 @@ std::string show_location(const M& where) {
105
101
// Do this once
106
102
static std::atomic<int > printed_header = 0 ;
107
103
108
- template <typename M, typename V >
104
+ template <typename M>
109
105
void sampler (arb::probe_metadata pm, const arb::sample_records& samples) {
110
- auto reader = arb::make_sample_reader<M, V >(pm.meta , samples);
106
+ auto reader = arb::make_sample_reader<M>(pm.meta , samples);
111
107
// Print CSV header for sample output
112
108
if (0 == printed_header.fetch_add (1 )) {
113
109
std::cout << std::format (" t" , " " );
@@ -127,9 +123,9 @@ void sampler(arb::probe_metadata pm, const arb::sample_records& samples) {
127
123
128
124
struct cable_recipe : public arb ::recipe {
129
125
arb::cable_cell_global_properties gprop;
130
- any probe_addr;
126
+ std:: any probe_addr;
131
127
132
- explicit cable_recipe (any probe_addr, unsigned n_cv):
128
+ explicit cable_recipe (std:: any probe_addr, unsigned n_cv):
133
129
probe_addr(std::move(probe_addr)) {
134
130
gprop.default_parameters = arb::neuron_parameter_defaults;
135
131
gprop.default_parameters .discretization = arb::cv_policy_fixed_per_branch (n_cv);
@@ -138,7 +134,7 @@ struct cable_recipe: public arb::recipe {
138
134
arb::cell_size_type num_cells () const override { return 1 ; }
139
135
std::vector<arb::probe_info> get_probes (arb::cell_gid_type) const override { return {{probe_addr, " probe" }}; }
140
136
arb::cell_kind get_cell_kind (arb::cell_gid_type) const override { return arb::cell_kind::cable; }
141
- any get_global_properties (arb::cell_kind) const override { return gprop; }
137
+ std:: any get_global_properties (arb::cell_kind) const override { return gprop; }
142
138
143
139
arb::util::unique_any get_cell_description (arb::cell_gid_type) const override {
144
140
const double length = 1000 ; // [µm]
@@ -174,17 +170,17 @@ int main(int argc, char** argv) {
174
170
case probe_kind::cell:
175
171
sim.add_sampler (arb::all_probes,
176
172
arb::regular_schedule (opt.sample_dt *U::ms),
177
- sampler<arb::cable_state_cell_meta_type, arb::cable_sample_type >);
173
+ sampler<arb::cable_state_cell_meta_type>);
178
174
break ;
179
175
case probe_kind::state:
180
176
sim.add_sampler (arb::all_probes,
181
177
arb::regular_schedule (opt.sample_dt *U::ms),
182
- sampler<arb::cable_state_meta_type, arb::cable_sample_type >);
178
+ sampler<arb::cable_state_meta_type>);
183
179
break ;
184
180
case probe_kind::point:
185
181
sim.add_sampler (arb::all_probes,
186
182
arb::regular_schedule (opt.sample_dt *U::ms),
187
- sampler<arb::cable_point_meta_type, arb::cable_sample_type >);
183
+ sampler<arb::cable_point_meta_type>);
188
184
break ;
189
185
default :
190
186
std::cerr << " Invalid probe kind\n " ;
@@ -235,7 +231,7 @@ bool parse_options(options& opt, int& argc, char** argv) {
235
231
auto do_help = [&]() { usage (argv[0 ], help_msg); };
236
232
237
233
// Map probe argument to output variable name and a lambda that makes specific probe address from a location.
238
- using probe_spec_t = std::tuple<std::string, probe_kind, std::function<any (std::any)>>;
234
+ using probe_spec_t = std::tuple<std::string, probe_kind, std::function<std:: any (std::any)>>;
239
235
std::pair<const char *, probe_spec_t > probe_tbl[] {
240
236
// located probes
241
237
{" v" , {" v" , probe_kind::state, [](std::any a) -> std::any { return arb::cable_probe_membrane_voltage{any2loc (a)}; }}},
0 commit comments