Loading [MathJax]/extensions/tex2jax.js
CoreNEURON
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
report_handler.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 <memory>
12 #include <vector>
13 
14 #include "nrnreport.hpp"
17 
18 namespace coreneuron {
19 
21  public:
22  virtual ~ReportHandler() = default;
23 
24  virtual void create_report(ReportConfiguration& config, double dt, double tstop, double delay);
25 #if defined(ENABLE_BIN_REPORTS) || defined(ENABLE_SONATA_REPORTS)
26  virtual void register_section_report(const NrnThread& nt,
27  const ReportConfiguration& config,
28  const VarsToReport& vars_to_report,
29  bool is_soma_target);
30  virtual void register_custom_report(const NrnThread& nt,
31  const ReportConfiguration& config,
32  const VarsToReport& vars_to_report);
33  VarsToReport get_section_vars_to_report(const NrnThread& nt,
34  const std::vector<int>& gids_to_report,
35  double* report_variable,
36  SectionType section_type,
37  bool all_compartments) const;
38  VarsToReport get_summation_vars_to_report(const NrnThread& nt,
39  const std::vector<int>& gids_to_report,
40  const ReportConfiguration& report,
41  const std::vector<int>& nodes_to_gids) const;
42  VarsToReport get_synapse_vars_to_report(const NrnThread& nt,
43  const std::vector<int>& gids_to_report,
44  const ReportConfiguration& report,
45  const std::vector<int>& nodes_to_gids) const;
46  std::vector<int> map_gids(const NrnThread& nt) const;
47 #endif // defined(ENABLE_BIN_REPORTS) || defined(ENABLE_SONATA_REPORTS)
48  protected:
49 #if defined(ENABLE_BIN_REPORTS) || defined(ENABLE_SONATA_REPORTS)
50  std::vector<std::unique_ptr<ReportEvent>> m_report_events;
51 #endif // defined(ENABLE_BIN_REPORTS) || defined(ENABLE_SONATA_REPORTS)
52 };
53 
54 } // Namespace coreneuron
coreneuron::ReportHandler
Definition: report_handler.hpp:20
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::ReportConfiguration
Definition: nrnreport.hpp:85
coreneuron::dt
double dt
Definition: register_mech.cpp:22
report_event.hpp
coreneuron::NrnThread
Definition: multicore.hpp:75
coreneuron::SectionType
SectionType
Definition: nrnreport.hpp:83
nrnreport.hpp
multicore.hpp
coreneuron::ReportHandler::create_report
virtual void create_report(ReportConfiguration &config, double dt, double tstop, double delay)
Definition: report_handler.cpp:36
coreneuron::ReportHandler::~ReportHandler
virtual ~ReportHandler()=default