Find cross with current volume ignoring embraced ones. s_ext=1 exit, now point is inside, but embraced volumes are ingnored. s_ext=0 enter, now point is outside
210 {
211 mfunnamep(
"int ulsvolume::range_ext(trajestep& fts, int s_ext) const");
213#ifdef DEBUG_ulsvolume_range_ext
214 mcout <<
"ulsvolume::range_ext, START, s_ext=" << s_ext <<
" qsurf=" <<
qsurf
215 << '\n';
217#endif
218 constexpr int pqcrossurf = 4;
219 vfloat crange[pqcrossurf];
220 point cpt[pqcrossurf];
221 int fs_ext[pqcrossurf];
222 int n, m, nc;
223 int s = 0;
224 if (s_ext == 1) {
225 for (n = 0; n <
qsurf; n++) {
226 int qc =
surf[n].get()->range(fts, crange, cpt, fs_ext);
227 for (m = 0; m < qc; m++) {
228 if (fs_ext[m] == 1) {
229 s = 1;
230
231 fts.mrange = crange[m];
232 fts.mpoint = cpt[m];
233 break;
234 } else if (fs_ext[m] == 0) {
238 mcerr <<
"\nshould never happen\n"
239 << "It may happen if you call this function with s_ext==1\n"
240 << "for point outside the volume\n";
242 }
243 } else if (fs_ext[m] == 2)
244 break;
245 }
246 }
247
248 if (s == 1) {
249 fts.s_prec = 0;
250 }
251 return s;
252 } else {
253 int ss = 0;
254 for (n = 0; n <
qsurf; n++) {
255#ifdef DEBUG_ulsvolume_range_ext
257#endif
258 int qc =
surf[n].get()->range(fts, crange, cpt, fs_ext);
259#ifdef DEBUG_ulsvolume_range_ext
260 mcout <<
"ulsvolume::range_ext: qc=" << qc <<
"\n";
262#endif
263 for (nc = 0; nc < qc; nc++)
264 {
265#ifdef DEBUG_ulsvolume_range_ext
266 mcout <<
"nc=" << nc <<
" fs_ext[nc]=" << fs_ext[nc] <<
'\n';
267#endif
268 if (fs_ext[nc] == 0)
269 {
270 s = 1;
271 for (m = 0; m <
qsurf; m++)
272 {
273 if (m != n) {
274 if (
surf[m].get()->check_point_inside1(cpt[nc], fs_ext[nc],
276#ifdef DEBUG_ulsvolume_range_ext
277 mcout <<
"m=" << m <<
'\n';
278 mcout <<
"Since the point is outside of the other surface, "
279 << "it can not be border of volume\n";
280#endif
281 s = 0;
282 break;
283 }
284 }
285 }
286#ifdef DEBUG_ulsvolume_range_ext
288#endif
289 if (s == 1) {
290#ifdef DEBUG_ulsvolume_range_ext
291 mcout <<
"The crossing point is inside all other surfaces, \n"
292 << "so it is good crossing point\n";
293#endif
294 ss = 1;
295 fts.mrange = crange[nc];
296 fts.mpoint = cpt[nc];
297 break;
298
299 }
300 }
301 }
302 }
303 if (ss == 1) {
304 fts.s_prec = 0;
305 }
306#ifdef DEBUG_ulsvolume_range_ext
307 mcout <<
"ulsvolume::range_ext: at the end\n";
309 mcout <<
"ss=" << ss <<
'\n';
310#endif
311 return ss;
312 }
313}
#define mfunnamep(string)
#define Iprintn(file, name)