CoreNEURON
nrnsection_mapping.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 <numeric>
12 #include <string>
13 #include <utility>
14 #include <vector>
15 #include <map>
16 #include <iostream>
17 
18 namespace coreneuron {
19 
20 /** type to store every section and associated segments */
21 using segvec_type = std::vector<int>;
22 using secseg_map_type = std::map<int, segvec_type>;
23 using secseg_it_type = secseg_map_type::iterator;
24 
25 /** @brief Section to segment mapping
26  *
27  * For a section list (of a particulat type), store mapping
28  * of section to segments
29  * a section is a arbitrary user classification to recognize some segments (ex: api, soma, dend,
30  * axon)
31  *
32  */
33 struct SecMapping {
34  /** name of section list */
35  std::string name;
36 
37  /** map of section and associated segments */
39 
40  SecMapping() = default;
41 
42  explicit SecMapping(std::string s)
43  : name(std::move(s)) {}
44 
45  /** @brief return total number of sections in section list */
46  size_t num_sections() const noexcept {
47  return secmap.size();
48  }
49 
50  /** @brief return number of segments in section list */
51  size_t num_segments() const {
52  return std::accumulate(secmap.begin(), secmap.end(), 0, [](int psum, const auto& item) {
53  return psum + item.second.size();
54  });
55  }
56 
57  /** @brief add section to associated segment */
58  void add_segment(int sec, int seg) {
59  secmap[sec].push_back(seg);
60  }
61 };
62 
63 /** @brief Compartment mapping information for a cell
64  *
65  * A cell can have multiple section list types like
66  * soma, axon, apic, dend etc. User will add these
67  * section lists using HOC interface.
68  */
69 struct CellMapping {
70  /** gid of a cell */
71  int gid;
72 
73  /** list of section lists (like soma, axon, apic) */
74  std::vector<SecMapping*> secmapvec;
75 
76  CellMapping(int g)
77  : gid(g) {}
78 
79  /** @brief total number of sections in a cell */
80  int num_sections() const {
81  return std::accumulate(secmapvec.begin(),
82  secmapvec.end(),
83  0,
84  [](int psum, const auto& secmap) {
85  return psum + secmap->num_sections();
86  });
87  }
88 
89  /** @brief return number of segments in a cell */
90  int num_segments() const {
91  return std::accumulate(secmapvec.begin(),
92  secmapvec.end(),
93  0,
94  [](int psum, const auto& secmap) {
95  return psum + secmap->num_segments();
96  });
97  }
98 
99  /** @brief number of section lists */
100  size_t size() const noexcept {
101  return secmapvec.size();
102  }
103 
104  /** @brief add new SecMapping */
106  secmapvec.push_back(s);
107  }
108 
109  /** @brief return section list mapping with given name */
110  SecMapping* get_seclist_mapping(const std::string& name) const {
111  for (auto& secmap: secmapvec) {
112  if (name == secmap->name) {
113  return secmap;
114  }
115  }
116 
117  std::cout << "Warning: Section mapping list " << name << " doesn't exist! \n";
118  return nullptr;
119  }
120 
121  /** @brief return segment count for specific section list with given name */
122  size_t get_seclist_segment_count(const std::string& name) const {
123  SecMapping* s = get_seclist_mapping(name);
124  size_t count = 0;
125  if (s) {
126  count = s->num_segments();
127  }
128  return count;
129  }
130  /** @brief return segment count for specific section list with given name */
131  size_t get_seclist_section_count(const std::string& name) const {
132  SecMapping* s = get_seclist_mapping(name);
133  size_t count = 0;
134  if (s) {
135  count = s->num_sections();
136  }
137  return count;
138  }
139 
141  for (size_t i = 0; i < secmapvec.size(); i++) {
142  delete secmapvec[i];
143  }
144  }
145 };
146 
147 /** @brief Compartment mapping information for NrnThread
148  *
149  * NrnThread could have more than one cell in cellgroup
150  * and we store this in vector.
151  */
153  /** list of cells mapping */
154  std::vector<CellMapping*> mappingvec;
155 
156  /** @brief number of cells */
157  size_t size() const {
158  return mappingvec.size();
159  }
160 
161  /** @brief memory cleanup */
163  for (size_t i = 0; i < mappingvec.size(); i++) {
164  delete mappingvec[i];
165  }
166  }
167 
168  /** @brief get cell mapping information for given gid
169  * if exist otherwise return nullptr.
170  */
171  CellMapping* get_cell_mapping(int gid) const {
172  for (const auto& mapping: mappingvec) {
173  if (mapping->gid == gid) {
174  return mapping;
175  }
176  }
177  return nullptr;
178  }
179 
180  /** @brief add mapping information of new cell */
182  mappingvec.push_back(c);
183  }
184 };
185 } // namespace coreneuron
coreneuron::SecMapping::num_sections
size_t num_sections() const noexcept
return total number of sections in section list
Definition: nrnsection_mapping.hpp:46
coreneuron::NrnThreadMappingInfo::~NrnThreadMappingInfo
~NrnThreadMappingInfo()
memory cleanup
Definition: nrnsection_mapping.hpp:162
coreneuron::CellMapping
Compartment mapping information for a cell.
Definition: nrnsection_mapping.hpp:69
coreneuron::CellMapping::gid
int gid
gid of a cell
Definition: nrnsection_mapping.hpp:71
coreneuron::CellMapping::num_sections
int num_sections() const
total number of sections in a cell
Definition: nrnsection_mapping.hpp:80
coreneuron::SecMapping::SecMapping
SecMapping(std::string s)
Definition: nrnsection_mapping.hpp:42
coreneuron::CellMapping::~CellMapping
~CellMapping()
Definition: nrnsection_mapping.hpp:140
coreneuron::CellMapping::num_segments
int num_segments() const
return number of segments in a cell
Definition: nrnsection_mapping.hpp:90
coreneuron::segvec_type
std::vector< int > segvec_type
type to store every section and associated segments
Definition: nrnsection_mapping.hpp:21
coreneuron::secseg_it_type
secseg_map_type::iterator secseg_it_type
Definition: nrnsection_mapping.hpp:23
coreneuron::CellMapping::add_sec_map
void add_sec_map(SecMapping *s)
add new SecMapping
Definition: nrnsection_mapping.hpp:105
coreneuron::SecMapping::num_segments
size_t num_segments() const
return number of segments in section list
Definition: nrnsection_mapping.hpp:51
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::NrnThreadMappingInfo::size
size_t size() const
number of cells
Definition: nrnsection_mapping.hpp:157
coreneuron::i
int i
Definition: cellorder.cpp:485
coreneuron::NrnThreadMappingInfo::get_cell_mapping
CellMapping * get_cell_mapping(int gid) const
get cell mapping information for given gid if exist otherwise return nullptr.
Definition: nrnsection_mapping.hpp:171
coreneuron::NrnThreadMappingInfo
Compartment mapping information for NrnThread.
Definition: nrnsection_mapping.hpp:152
coreneuron::NrnThreadMappingInfo::mappingvec
std::vector< CellMapping * > mappingvec
list of cells mapping
Definition: nrnsection_mapping.hpp:154
coreneuron::SecMapping::secmap
secseg_map_type secmap
map of section and associated segments
Definition: nrnsection_mapping.hpp:38
coreneuron::CellMapping::get_seclist_segment_count
size_t get_seclist_segment_count(const std::string &name) const
return segment count for specific section list with given name
Definition: nrnsection_mapping.hpp:122
coreneuron::secseg_map_type
std::map< int, segvec_type > secseg_map_type
Definition: nrnsection_mapping.hpp:22
coreneuron::SecMapping::name
std::string name
name of section list
Definition: nrnsection_mapping.hpp:35
coreneuron::CellMapping::get_seclist_section_count
size_t get_seclist_section_count(const std::string &name) const
return segment count for specific section list with given name
Definition: nrnsection_mapping.hpp:131
coreneuron::CellMapping::size
size_t size() const noexcept
number of section lists
Definition: nrnsection_mapping.hpp:100
sec
#define sec
Definition: md1redef.h:20
coreneuron::SecMapping::SecMapping
SecMapping()=default
coreneuron::SecMapping
Section to segment mapping.
Definition: nrnsection_mapping.hpp:33
coreneuron::SecMapping::add_segment
void add_segment(int sec, int seg)
add section to associated segment
Definition: nrnsection_mapping.hpp:58
coreneuron::CellMapping::secmapvec
std::vector< SecMapping * > secmapvec
list of section lists (like soma, axon, apic)
Definition: nrnsection_mapping.hpp:74
coreneuron::NrnThreadMappingInfo::add_cell_mapping
void add_cell_mapping(CellMapping *c)
add mapping information of new cell
Definition: nrnsection_mapping.hpp:181
coreneuron::CellMapping::get_seclist_mapping
SecMapping * get_seclist_mapping(const std::string &name) const
return section list mapping with given name
Definition: nrnsection_mapping.hpp:110
coreneuron::CellMapping::CellMapping
CellMapping(int g)
Definition: nrnsection_mapping.hpp:76