309{
312
313
314
315 if (std::abs(pz) - fDz >= -halfTolerance && pz*vz >= 0) { return kInfinity; }
316 G4double invz = (vz == 0) ? kInfinity : -1./vz;
317 G4double dz = std::copysign(fDz,invz);
320
321
322 for (auto k = 0; k < 4; ++k)
323 {
324 if (fTwist[k] != 0) continue;
325 const G4GenericTrapPlane& surf = fPlane[2*k];
326 G4double cosa = surf.A*vx + surf.B*vy + surf.C*vz;
327 G4double dist = surf.A*px + surf.B*py + surf.C*pz + surf.D;
328 if (dist >= -halfTolerance)
329 {
330 if (cosa >= 0.) { return kInfinity; }
332 xin = std::max(tmp, xin);
333 }
334 else
335 {
336 if (cosa > 0) { xout = std::min(-dist/cosa, xout); }
337 if (cosa < 0) { xin = std::max(-dist/cosa, xin); }
338 }
339 }
340
341
344 for (auto i = 0; i < 4; ++i)
345 {
346 if (fTwist[i] == 0) continue;
347
348
349 const G4GenericTrapPlane& surf1 = fPlane[2*i];
350 G4double cosa = surf1.A*vx + surf1.B*vy + surf1.C*vz;
351 G4double dist = surf1.A*px + surf1.B*py + surf1.C*pz + surf1.D;
352 if (dist >= -halfTolerance)
353 {
354 if (cosa >= 0.) { return kInfinity; }
356 tin = std::max(tmp, tin);
357 }
358 else
359 {
360 if (cosa > 0) { tout = std::min(-dist/cosa, tout); }
361 if (cosa < 0) { tin = std::max(-dist/cosa, tin); }
362 }
363
364
365 const G4GenericTrapPlane& surf2 = fPlane[2*i + 1];
366 cosa = surf2.A*vx + surf2.B*vy + surf2.C*vz;
367 dist = surf2.A*px + surf2.B*py + surf2.C*pz + surf2.D;
368 if (dist >= -halfTolerance)
369 {
370 if (cosa >= 0.) { return kInfinity; }
372 tin = std::max(tmp, tin);
373 }
374 else
375 {
376 if (cosa > 0) { tout = std::min(-dist/cosa, tout); }
377 if (cosa < 0) { tin = std::max(-dist/cosa, tin); }
378 }
379 }
380 if (tout - tin <= halfTolerance) { return kInfinity; }
381
382
383
385 if (x0 < fMinBBox.x() - halfTolerance ||
386 y0 < fMinBBox.y() - halfTolerance ||
387 z0 < fMinBBox.z() - halfTolerance ||
388 x0 > fMaxBBox.x() + halfTolerance ||
389 y0 > fMaxBBox.y() + halfTolerance ||
390 z0 > fMaxBBox.z() + halfTolerance)
391 {
392 t0 = tin;
393 x0 += vx*t0;
394 y0 += vy*t0;
396 }
397
398
399
402
403 if (tin - xin < halfTolerance) ttin[0] = xin;
404 if (xout - tout < halfTolerance) ttout[0] = xout;
405 G4double tminimal = tin - halfTolerance;
406 G4double tmaximal = tout + halfTolerance;
407
409 for (auto i = 0; i < 4; ++i)
410 {
411 if (fTwist[i] == 0) continue;
412
413
414 G4double ABC = fSurf[i].A*vx + fSurf[i].B*vy + fSurf[i].C*vz;
415 G4double ABCF = fSurf[i].A*x0 + fSurf[i].B*y0 + fSurf[i].C*
z0 + fSurf[i].F;
417 G4double B = 0.5*(fSurf[i].D*vx + fSurf[i].E*vy + ABCF*vz + ABC*
z0);
418 G4double C = fSurf[i].D*x0 + fSurf[i].E*y0 + ABCF*
z0 + fSurf[i].G;
419 if (std::abs(
A) <= EPSILON)
420 {
421
422 if (std::abs(B) <= EPSILON)
423 {
424
425
426 auto j = (i + 1)%4;
432 G4double leng = std::sqrt(dx*dx + dy*dy);
433 G4double dist = dx*(y0 - a.
y()) - dy*(x0 - a.
x());
434 if (dist >= -halfTolerance*leng) { return kInfinity; }
435 continue;
436 }
437
438
440
444 const G4GenericTrapSurface& surf = fSurf[i];
447 G4double nz = surf.A*x + surf.B*y + 2.*surf.C*z + surf.F;
448
449 if (nx*vx + ny*vy + nz*vz >= 0.)
450 {
451 auto k = (i == 3) ? 0 : i + 1;
457 G4double leng = std::sqrt(dx*dx + dy*dy);
458 G4double dist = dx*(py - a.
y()) - dy*(px - a.
x());
459 if (dist >= -halfTolerance*leng) { return kInfinity; }
460
461 if (tmp < tminimal || tmp > tmaximal) continue;
462 if (std::abs(tmp - ttout[0]) < halfTolerance) continue;
463 if (tmp < ttout[0])
464 {
465 ttout[1] = ttout[0];
466 ttout[0] = tmp;
467 }
468 else { ttout[1] = std::min(tmp, ttout[1]); }
469 }
470 else
471 {
472 if (tmp < tminimal || tmp > tmaximal) continue;
473 if (std::abs(tmp - ttin[0]) < halfTolerance) continue;
474 if (tmp < ttin[0])
475 {
476 ttin[1] = ttin[0];
477 ttin[0] = tmp;
478 }
479 else { ttin[1] = std::min(tmp, ttin[1]); }
480 }
481 continue;
482 }
483
484
486 if (
D < 0.25*fScratch*fScratch*
A*
A)
487 {
488 if (
A > 0)
return kInfinity;
489 continue;
490 }
491
492
493 G4double tmp = -
B - std::copysign(std::sqrt(
D), B);
496 G4double tsurfin = std::min(t1, t2);
497 G4double tsurfout = std::max(t1, t2);
498 if (
A < 0) std::swap(tsurfin, tsurfout);
499
500 if (tsurfin >= tminimal && tsurfin <= tmaximal)
501 {
502 if (std::abs(tsurfin - ttin[0]) >= halfTolerance)
503 {
504 if (tsurfin < ttin[0])
505 {
506 ttin[1] = ttin[0];
507 ttin[0] = tsurfin;
508 }
509 else { ttin[1] = std::min(tsurfin, ttin[1]); }
510 }
511 }
512 if (tsurfout >= tminimal && tsurfout <= tmaximal)
513 {
514 if (std::abs(tsurfout - ttout[0]) >= halfTolerance)
515 {
516 if (tsurfout < ttout[0])
517 {
518 ttout[1] = ttout[0];
519 ttout[0] = tsurfout;
520 }
521 else { ttout[1] = std::min(tsurfout, ttout[1]); }
522 }
523 }
524 }
525
526
527
528 if (ttin[0] ==
DBL_MAX) {
return kInfinity; }
529
530
532 {
534 G4double distout = (distin >= ttout[0] - halfTolerance) ? ttout[1] : ttout[0];
535 G4double dist = (distout <= halfTolerance || distout - distin <= halfTolerance) ? kInfinity : distin;
536 return (dist < halfTolerance) ? 0. : dist;
537 }
538
539
540 if (ttin[1] < ttout[0])
541 {
542 G4double distin = ttin[1], distout = ttout[0];
543 G4double dist = (distout <= halfTolerance || distout - distin <= halfTolerance) ? kInfinity : distin;
544 return (dist < halfTolerance) ? 0. : dist;
545 }
546
547
548 G4double distin1 = ttin[0], distout1 = ttout[0];
549 G4double dist1 = (distout1 <= halfTolerance || distout1 - distin1 <= halfTolerance) ? kInfinity : distin1;
550 if (dist1 != kInfinity) { return (dist1 < halfTolerance) ? 0. : dist1; }
551
552
553 G4double distin2 = ttin[1], distout2 = ttout[1];
554 G4double dist2 = (distout2 <= halfTolerance || distout2 - distin2 <= halfTolerance) ? kInfinity : distin2;
555 return (dist2 < halfTolerance) ? 0. : dist2;
556}
G4double C(G4double temp)
G4double B(G4double temperature)
G4double D(G4double temp)