CoreNEURON
nrnreport.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 /**
10  * @file nrnreport.h
11  * @brief interface with reportinglib for soma reports
12  */
13 
14 #ifndef _H_NRN_REPORT_
15 #define _H_NRN_REPORT_
16 
17 #include <string>
18 #include <vector>
19 #include <set>
20 #include <unordered_map>
21 #include <cstdint>
22 
23 #define REPORT_MAX_NAME_LEN 256
24 #define REPORT_MAX_FILEPATH_LEN 4096
25 
26 namespace coreneuron {
27 
29  // Contains the values of the summation with index == segment_id
30  std::vector<double> summation_ = {};
31  // Map containing the pointers of the currents and its scaling factor for every segment_id
32  std::unordered_map<size_t, std::vector<std::pair<double*, int>>> currents_;
33  // Map containing the list of segment_ids per gid
34  std::unordered_map<int, std::vector<size_t>> gid_segments_;
35 };
36 
38  // Map containing a SummationReport object per report
39  std::unordered_map<std::string, SummationReport> summation_reports_;
40 };
41 
42 struct SpikesInfo {
43  std::string file_name = "out";
44  std::vector<std::pair<std::string, int>> population_info;
45 };
46 
47 // name of the variable in mod file that is used to indicate which synapse
48 // is enabled or disable for reporting
49 #define SELECTED_VAR_MOD_NAME "selected_for_report"
50 
51 /// name of the variable in mod file used for setting synapse id
52 #define SYNAPSE_ID_MOD_NAME "synapseID"
53 
54 /*
55  * Defines the type of target, as per the following syntax:
56  * 0=Compartment, 1=Cell/Soma, Section { 2=Axon, 3=Dendrite, 4=Apical }
57  * The "Comp" variations are compartment-based (all segments, not middle only)
58  */
59 enum class TargetType {
60  Compartment = 0,
61  Cell = 1,
62  SectionSoma = 2,
63  SectionAxon = 3,
64  SectionDendrite = 4,
65  SectionApical = 5,
66  SectionSomaAll = 6,
67  SectionAxonAll = 7,
69  SectionApicalAll = 9,
70 };
71 
72 // enumerate that defines the type of target report requested
73 enum ReportType {
80 };
81 
82 // enumerate that defines the section type for a Section report
84 
86  std::string name; // name of the report
87  std::string output_path; // full path of the report
88  std::string target_name; // target of the report
89  std::vector<std::string> mech_names; // mechanism names
90  std::vector<std::string> var_names; // variable names
91  std::vector<int> mech_ids; // mechanisms
92  std::string unit; // unit of the report
93  std::string format; // format of the report (Bin, hdf5, SONATA)
94  std::string type_str; // type of report string
95  TargetType target_type; // type of the target
96  ReportType type; // type of the report
97  SectionType section_type; // type of section report
98  bool section_all_compartments; // flag for section report (all values)
99  double report_dt; // reporting timestep
100  double start; // start time of report
101  double stop; // stop time of report
102  int num_gids; // total number of gids
103  int buffer_size; // hint on buffer size used for this report
104  std::vector<int> target; // list of gids for this report
105 };
106 
107 void setup_report_engine(double dt_report, double mindelay);
108 std::vector<ReportConfiguration> create_report_configurations(const std::string& filename,
109  const std::string& output_dir,
110  SpikesInfo& spikes_info);
111 void finalize_report();
112 void nrn_flush_reports(double t);
113 void set_report_buffer_size(int n);
114 
115 } // namespace coreneuron
116 
117 #endif //_H_NRN_REPORT_
coreneuron::SummationReport
Definition: nrnreport.hpp:28
coreneuron::ReportType
ReportType
Definition: nrnreport.hpp:73
coreneuron::ReportConfiguration::stop
double stop
Definition: nrnreport.hpp:101
coreneuron::ReportConfiguration::section_type
SectionType section_type
Definition: nrnreport.hpp:97
coreneuron::ReportConfiguration::start
double start
Definition: nrnreport.hpp:100
coreneuron::TargetType::SectionAxon
@ SectionAxon
coreneuron::TargetType::SectionDendrite
@ SectionDendrite
coreneuron::ReportConfiguration::type
ReportType type
Definition: nrnreport.hpp:96
coreneuron::ReportConfiguration::num_gids
int num_gids
Definition: nrnreport.hpp:102
coreneuron::TargetType::SectionSoma
@ SectionSoma
coreneuron::TargetType::SectionApicalAll
@ SectionApicalAll
coreneuron::Axon
@ Axon
Definition: nrnreport.hpp:83
coreneuron::SummationReport::currents_
std::unordered_map< size_t, std::vector< std::pair< double *, int > > > currents_
Definition: nrnreport.hpp:32
coreneuron::ReportConfiguration::target
std::vector< int > target
Definition: nrnreport.hpp:104
coreneuron::TargetType::SectionApical
@ SectionApical
coreneuron::SynapseReport
@ SynapseReport
Definition: nrnreport.hpp:76
coreneuron::SummationReportMapping
Definition: nrnreport.hpp:37
coreneuron::Cell
@ Cell
Definition: nrnreport.hpp:83
coreneuron::ReportConfiguration::name
std::string name
Definition: nrnreport.hpp:86
coreneuron::ReportConfiguration::mech_ids
std::vector< int > mech_ids
Definition: nrnreport.hpp:91
coreneuron::SpikesInfo::population_info
std::vector< std::pair< std::string, int > > population_info
Definition: nrnreport.hpp:44
coreneuron::ReportConfiguration::var_names
std::vector< std::string > var_names
Definition: nrnreport.hpp:90
coreneuron::ReportConfiguration::report_dt
double report_dt
Definition: nrnreport.hpp:99
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::Dendrite
@ Dendrite
Definition: nrnreport.hpp:83
coreneuron::t
double t
Definition: register_mech.cpp:22
coreneuron::All
@ All
Definition: nrnreport.hpp:83
coreneuron::IMembraneReport
@ IMembraneReport
Definition: nrnreport.hpp:77
coreneuron::ReportConfiguration
Definition: nrnreport.hpp:85
coreneuron::ReportConfiguration::section_all_compartments
bool section_all_compartments
Definition: nrnreport.hpp:98
coreneuron::ReportConfiguration::output_path
std::string output_path
Definition: nrnreport.hpp:87
coreneuron::setup_report_engine
void setup_report_engine(double dt_report, double mindelay)
in the current implementation, we call flush during every spike exchange interval.
Definition: nrnreport.cpp:53
coreneuron::TargetType::SectionDendriteAll
@ SectionDendriteAll
coreneuron::ReportConfiguration::target_type
TargetType target_type
Definition: nrnreport.hpp:95
coreneuron::create_report_configurations
std::vector< ReportConfiguration > create_report_configurations(const std::string &filename, const std::string &output_dir, SpikesInfo &spikes_info)
Definition: report_configuration_parser.cpp:106
coreneuron::set_report_buffer_size
void set_report_buffer_size(int n)
Definition: nrnreport.cpp:69
coreneuron::finalize_report
void finalize_report()
Definition: nrnreport.cpp:79
coreneuron::nrn_flush_reports
void nrn_flush_reports(double t)
Definition: nrnreport.cpp:36
coreneuron::TargetType::SectionAxonAll
@ SectionAxonAll
coreneuron::TargetType::Compartment
@ Compartment
coreneuron::SectionReport
@ SectionReport
Definition: nrnreport.hpp:78
coreneuron::ReportConfiguration::unit
std::string unit
Definition: nrnreport.hpp:92
coreneuron::SpikesInfo::file_name
std::string file_name
Definition: nrnreport.hpp:43
coreneuron::SectionType
SectionType
Definition: nrnreport.hpp:83
coreneuron::SomaReport
@ SomaReport
Definition: nrnreport.hpp:74
coreneuron::ReportConfiguration::mech_names
std::vector< std::string > mech_names
Definition: nrnreport.hpp:89
coreneuron::Soma
@ Soma
Definition: nrnreport.hpp:83
coreneuron::ReportConfiguration::target_name
std::string target_name
Definition: nrnreport.hpp:88
coreneuron::ReportConfiguration::type_str
std::string type_str
Definition: nrnreport.hpp:94
coreneuron::SpikesInfo
Definition: nrnreport.hpp:42
coreneuron::SummationReportMapping::summation_reports_
std::unordered_map< std::string, SummationReport > summation_reports_
Definition: nrnreport.hpp:39
coreneuron::CompartmentReport
@ CompartmentReport
Definition: nrnreport.hpp:75
coreneuron::SummationReport::gid_segments_
std::unordered_map< int, std::vector< size_t > > gid_segments_
Definition: nrnreport.hpp:34
coreneuron::SummationReport::summation_
std::vector< double > summation_
Definition: nrnreport.hpp:30
coreneuron::TargetType
TargetType
Definition: nrnreport.hpp:59
coreneuron::ReportConfiguration::format
std::string format
Definition: nrnreport.hpp:93
coreneuron::TargetType::SectionSomaAll
@ SectionSomaAll
coreneuron::ReportConfiguration::buffer_size
int buffer_size
Definition: nrnreport.hpp:103
coreneuron::Apical
@ Apical
Definition: nrnreport.hpp:83