CoreNEURON
binary_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 <functional>
12 #include <memory>
13 #include <vector>
14 #include <array>
15 
16 #include "report_handler.hpp"
18 
19 namespace coreneuron {
20 
22  public:
23  void create_report(ReportConfiguration& config, double dt, double tstop, double delay) override;
24 #ifdef ENABLE_BIN_REPORTS
25  void register_section_report(const NrnThread& nt,
26  const ReportConfiguration& config,
27  const VarsToReport& vars_to_report,
28  bool is_soma_target) override;
29  void register_custom_report(const NrnThread& nt,
30  const ReportConfiguration& config,
31  const VarsToReport& vars_to_report) override;
32 
33  private:
34  using create_extra_func = std::function<void(const CellMapping&, std::array<int, 5>&)>;
35  void register_report(const NrnThread& nt,
36  const ReportConfiguration& config,
37  const VarsToReport& vars_to_report,
38  create_extra_func& create_extra);
39 #endif // ENABLE_BIN_REPORTS
40 };
41 
42 } // Namespace coreneuron
coreneuron::CellMapping
Compartment mapping information for a cell.
Definition: nrnsection_mapping.hpp:69
coreneuron::ReportHandler
Definition: report_handler.hpp:20
report_handler.hpp
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
nrnsection_mapping.hpp
coreneuron::NrnThread
Definition: multicore.hpp:75
coreneuron::BinaryReportHandler
Definition: binary_report_handler.hpp:21
coreneuron::BinaryReportHandler::create_report
void create_report(ReportConfiguration &config, double dt, double tstop, double delay) override
Definition: binary_report_handler.cpp:16