CoreNEURON
report_event.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 <algorithm>
12 #include <unordered_map>
13 #include <vector>
14 #include <string>
15 
18 
19 namespace coreneuron {
20 
21 #if defined(ENABLE_BIN_REPORTS) || defined(ENABLE_SONATA_REPORTS)
22 struct VarWithMapping {
23  uint32_t id;
24  double* var_value;
25  VarWithMapping(int id_, double* v_)
26  : id(id_)
27  , var_value(v_) {}
28 };
29 
30 // mapping the set of variables pointers to report to its gid
31 using VarsToReport = std::unordered_map<uint64_t, std::vector<VarWithMapping>>;
32 
33 class ReportEvent: public DiscreteEvent {
34  public:
35  ReportEvent(double dt,
36  double tstart,
37  const VarsToReport& filtered_gids,
38  const char* name,
39  double report_dt);
40 
41  /** on deliver, call ReportingLib and setup next event */
42  void deliver(double t, NetCvode* nc, NrnThread* nt) override;
43  bool require_checkpoint() override;
44  void summation_alu(NrnThread* nt);
45 
46  private:
47  double dt;
48  double step;
49  std::string report_path;
50  double report_dt;
51  int reporting_period;
52  std::vector<int> gids_to_report;
53  double tstart;
54  VarsToReport vars_to_report;
55 };
56 #endif // defined(ENABLE_BIN_REPORTS) || defined(ENABLE_SONATA_REPORTS)
57 
58 } // Namespace coreneuron
netcvode.hpp
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::t
double t
Definition: register_mech.cpp:22
coreneuron::dt
double dt
Definition: register_mech.cpp:22
netcon.hpp
id
#define id
Definition: md1redef.h:41