CoreNEURON
user_params.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 namespace coreneuron {
12 
13 class CheckPoints;
14 
15 /// This structure is data needed is several part of nrn_setup, phase1 and phase2.
16 /// Before it was globals variables, group them to give them as a single argument.
17 /// They have for the most part, nothing related to each other.
18 struct UserParams {
19  UserParams(int ngroup_,
20  int* gidgroups_,
21  const char* path_,
22  const char* restore_path_,
23  CheckPoints& checkPoints_)
24  : ngroup(ngroup_)
25  , gidgroups(gidgroups_)
26  , path(path_)
27  , restore_path(restore_path_)
28  , file_reader(ngroup_)
29  , checkPoints(checkPoints_) {}
30 
31  /// direct memory mode with neuron, do not open files
32  /// Number of local cell groups
33  const int ngroup;
34  /// Array of cell group numbers (indices)
35  const int* const gidgroups;
36  /// path to dataset file
37  const char* const path;
38  /// Dataset path from where simulation is being restored
39  const char* const restore_path;
40  std::vector<FileHandler> file_reader;
42 };
43 } // namespace coreneuron
coreneuron::UserParams::file_reader
std::vector< FileHandler > file_reader
Definition: user_params.hpp:40
coreneuron::CheckPoints
Definition: nrn_checkpoint.hpp:17
coreneuron::UserParams::checkPoints
CheckPoints & checkPoints
Definition: user_params.hpp:41
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::UserParams
This structure is data needed is several part of nrn_setup, phase1 and phase2.
Definition: user_params.hpp:18
coreneuron::UserParams::gidgroups
const int *const gidgroups
Array of cell group numbers (indices)
Definition: user_params.hpp:35
coreneuron::UserParams::restore_path
const char *const restore_path
Dataset path from where simulation is being restored.
Definition: user_params.hpp:39
coreneuron::UserParams::path
const char *const path
path to dataset file
Definition: user_params.hpp:37
coreneuron::UserParams::ngroup
const int ngroup
direct memory mode with neuron, do not open files Number of local cell groups
Definition: user_params.hpp:33
coreneuron::UserParams::UserParams
UserParams(int ngroup_, int *gidgroups_, const char *path_, const char *restore_path_, CheckPoints &checkPoints_)
Definition: user_params.hpp:19