12 #include "Math/GenVector/Cartesian3D.h" 13 #include "Math/GenVector/DisplacementVector3D.h" 14 #include "Math/GenVector/PositionVector3D.h" 17 #include <type_traits> 35 Vector_t const& TrajectoryDirect)
const 37 std::vector<Point_t> IntersectionPoints;
38 std::vector<double> LineParameters;
44 static std::array<Vector_t, 6U>
const NormalVectors = {{
54 std::array<Point_t, 6U>
const NormalVectorOffsets = {{
64 for (
unsigned int face_no = 0; face_no < NormalVectors.size(); face_no++) {
66 if (NormalVectors[face_no].Dot(TrajectoryDirect)) {
68 LineParameters.push_back(
69 NormalVectors[face_no].Dot(NormalVectorOffsets.at(face_no) - TrajectoryStart) /
70 NormalVectors[face_no].Dot(TrajectoryDirect));
76 IntersectionPoints.push_back(TrajectoryStart + LineParameters.back() * TrajectoryDirect);
80 unsigned int NoCheckCoord;
85 NoCheckCoord = (face_no - 1) / 2;
89 NoCheckCoord = face_no / 2;
93 unsigned int coord = 0;
94 for (
auto extractCoord : vect::coordReaders<Point_t>()) {
95 auto const lastPointCoord =
vect::bindCoord(IntersectionPoints.back(), extractCoord);
104 if (coord++ != NoCheckCoord &&
105 ((lastPointCoord() > maxCoord()) || (lastPointCoord() < minCoord))) {
107 LineParameters.pop_back();
108 IntersectionPoints.pop_back();
115 if (LineParameters.size() == 2 && LineParameters.front() > LineParameters.back()) {
116 std::swap(IntersectionPoints.front(), IntersectionPoints.back());
119 return IntersectionPoints;
124 TVector3
const& TrajectoryDirect)
const 126 std::vector<TVector3> intersections;
128 intersections.emplace_back(point.X(), point.Y(), point.Z());
129 return intersections;
135 for (
auto coordMan : vect::coordManagers<Point_t>()) {
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double >, ROOT::Math::GlobalCoordinateSystemTag > Vector_t
Type for representation of momenta in 3D space.
Point_t Max() const
Returns the corner point with the largest coordinates.
GENVECTOR_CONSTEXPR Point_t makePointFromCoords(Coords &&coords)
Creates a geo::Point_t from its coordinates (see makeFromCoords()).
auto coord(Vector &v, unsigned int n) noexcept
Returns an object to manage the coordinate n of a vector.
constexpr auto bindCoord(Vector const &v, CoordReader_t< Vector > helper)
Binds the specified constant vector to the coordinate reader.
Utilities to extend the interface of geometry vectors.This library provides facilities that can be us...
Point_t toPoint(Point const &p)
Convert the specified point into a geo::Point_t.
Provides a base class aware of world box coordinates.
Coords_t c_max
maximum coordinates (x, y, z)
ROOT::Math::PositionVector3D< ROOT::Math::Cartesian3D< double >, ROOT::Math::GlobalCoordinateSystemTag > Point_t
Type for representation of position in physical 3D space.
Point_t Min() const
Returns the corner point with the smallest coordinates.
Coords_t c_min
minimum coordinates (x, y, z)
void SortCoordinates()
Makes sure each coordinate of the minimum point is smaller than maximum.
std::vector< TVector3 > GetIntersections(TVector3 const &TrajectoryStart, TVector3 const &TrajectoryDirect) const
Calculates the entry and exit points of a trajectory on the box surface.
bool ContainsPosition(Point_t const &point, double wiggle=1.0) const
Returns whether this volume contains the specified point.