#include <G4KDMap.hh>
Definition at line 91 of file G4KDMap.hh.
◆ G4KDMap()
G4KDMap::G4KDMap |
( |
std::size_t | dimensions | ) |
|
|
inline |
Definition at line 94 of file G4KDMap.hh.
94 : fSortOut(dimensions, __1DSortOut(dimensions))
95 {
96 fIsSorted = false;
97
98
99
100
101 }
◆ GetDimension()
std::size_t G4KDMap::GetDimension |
( |
| ) |
|
|
inline |
Definition at line 107 of file G4KDMap.hh.
108 {
109 return fSortOut.size();
110 }
◆ GetSize()
std::size_t G4KDMap::GetSize |
( |
| ) |
|
|
inline |
Definition at line 112 of file G4KDMap.hh.
113 {
114 return fMap.size();
115 }
◆ Insert()
Definition at line 88 of file G4KDMap.cc.
89{
90 vector<_deq_iterator>& vit = fMap[
pos];
91
92 std::size_t maxSize = fSortOut.size();
93
95
96 vit.reserve(maxSize);
97
98 for (std::size_t i = 0; i < fSortOut.size(); ++i)
99 {
100 vit[i] = fSortOut[i].Insert(pos);
101
102
103
104
105
106
107 }
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132 fIsSorted = false;
133}
G4GLOB_DLL std::ostream G4cout
◆ PopOutMiddle()
Definition at line 135 of file G4KDMap.cc.
136{
138 G4cout <<
"G4KDMap::PopOutMiddle ( "<< dimension <<
" )" <<
G4endl;
139
140 if(!fIsSorted)
Sort();
141 G4KDNode_Base* output_node = fSortOut[dimension].PopOutMiddle();
142
143 if(output_node == nullptr) return nullptr;
144
147
148 auto fMap_it
149 = fMap.find(output_node);
150
151
152 if(fMap_it == fMap.end())
153 {
156 return output_node;
157 }
158
159 std::vector<_deq_iterator>& vit = fMap_it->second;
160
161
162
163
164
165
166
167
168
169
170 for(std::size_t i = 0; i < fSortOut.size(); ++i)
171 {
172 if(i != dimension)
173 {
175
176
177
178
179
180
181
182
183
184
185 fSortOut[i].Erase(vit[i]);
186 }
187 }
188
189 fMap.erase(fMap_it);
190
191 return output_node;
192}
◆ Sort()
Definition at line 194 of file G4KDMap.cc.
195{
196 for (auto & i : fSortOut)
197 {
198 i.Sort();
199 }
200
201 fIsSorted = true;
202}
Referenced by PopOutMiddle().
The documentation for this class was generated from the following files: