LArSoft  v10_04_05
Liquid Argon Software toolkit - https://larsoft.org/
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
BoxBoundedGeo.h
Go to the documentation of this file.
1 
8 #ifndef LARCOREALG_GEOMETRY_BOXBOUNDEDGEO_H
9 #define LARCOREALG_GEOMETRY_BOXBOUNDEDGEO_H
10 
11 // LArSoft libraries
13 
14 // ROOT library
15 #include "TVector3.h"
16 
17 // C/C++ standard library
18 #include <algorithm>
19 #include <vector>
20 
21 namespace geo {
31  class BoxBoundedGeo {
32  public:
33  using Coords_t = Point_t;
34  using Coord_t = Coords_t::Scalar;
35 
44  BoxBoundedGeo() = default;
45 
60  Coord_t x_max,
61  Coord_t y_min,
62  Coord_t y_max,
63  Coord_t z_min,
64  Coord_t z_max)
65  : c_min{x_min, y_min, z_min}, c_max{x_max, y_max, z_max}
66  {
68  }
69 
79  BoxBoundedGeo(Coords_t lower, Coords_t upper) : c_min(lower), c_max(upper)
80  {
82  }
83 
86 
88  double MinX() const { return c_min.X(); }
89 
91  double MaxX() const { return c_max.X(); }
92 
94  double CenterX() const { return (MinX() + MaxX()) / 2.; }
95 
97  double SizeX() const { return MaxX() - MinX(); }
98 
100  double HalfSizeX() const { return SizeX() / 2.0; }
101 
103  double MinY() const { return c_min.Y(); }
104 
106  double MaxY() const { return c_max.Y(); }
107 
109  double CenterY() const { return (MinY() + MaxY()) / 2.; }
110 
112  double SizeY() const { return MaxY() - MinY(); }
113 
115  double HalfSizeY() const { return SizeY() / 2.0; }
116 
118  double MinZ() const { return c_min.Z(); }
119 
121  double MaxZ() const { return c_max.Z(); }
122 
124  double CenterZ() const { return (MinZ() + MaxZ()) / 2.; }
125 
127  double SizeZ() const { return MaxZ() - MinZ(); }
128 
130  double HalfSizeZ() const { return SizeZ() / 2.0; }
131 
133  Point_t Min() const { return c_min; }
134 
136  Point_t Max() const { return c_max; }
137 
139  Point_t Center() const { return {CenterX(), CenterY(), CenterZ()}; }
140 
142 
145 
156  bool ContainsX(double x, double const wiggle = 1) const
157  {
158  return CoordinateContained(x, MinX(), MaxX(), wiggle);
159  }
160 
168  bool ContainsY(double y, double const wiggle = 1) const
169  {
170  return CoordinateContained(y, MinY(), MaxY(), wiggle);
171  }
172 
180  bool ContainsZ(double z, double const wiggle = 1) const
181  {
182  return CoordinateContained(z, MinZ(), MaxZ(), wiggle);
183  }
184 
193  bool ContainsYZ(double y, double z, double const wiggle = 1) const
194  {
195  return ContainsY(y, wiggle) && ContainsZ(z, wiggle);
196  }
197 
208  bool ContainsPosition(Point_t const& point, double wiggle = 1.0) const
209  {
210  return ContainsX(point.X(), wiggle) && ContainsYZ(point.Y(), point.Z(), wiggle);
211  } // ContainsPosition()
213  bool ContainsPosition(TVector3 const& point, double wiggle = 1.0) const;
215  bool ContainsPosition(double const* point, double wiggle = 1.0) const;
216 
218 
221 
241  bool InFiducialX(double x, double neg_margin, double pos_margin) const
242  {
243  return CoordinateContained(x, MinX() + neg_margin, MaxX() - pos_margin);
244  }
251  bool InFiducialX(double x, double margin) const { return InFiducialX(x, margin, margin); }
252 
271  bool InFiducialY(double y, double neg_margin, double pos_margin) const
272  {
273  return CoordinateContained(y, MinY() + neg_margin, MaxY() - pos_margin);
274  }
281  bool InFiducialY(double y, double margin) const { return InFiducialY(y, margin, margin); }
282 
301  bool InFiducialZ(double z, double neg_margin, double pos_margin) const
302  {
303  return CoordinateContained(z, MinZ() + neg_margin, MaxZ() - pos_margin);
304  }
311  bool InFiducialZ(double z, double margin) const { return InFiducialZ(z, margin, margin); }
312 
314 
315  // -- BEGIN -- Overlaps ----------------------------------------------------
318 
320  bool OverlapsX(BoxBoundedGeo const& other) const
321  {
322  return std::min(MaxX(), other.MaxX()) > std::max(MinX(), other.MinX());
323  }
324 
326  bool OverlapsY(BoxBoundedGeo const& other) const
327  {
328  return std::min(MaxY(), other.MaxY()) > std::max(MinY(), other.MinY());
329  }
330 
332  bool OverlapsZ(BoxBoundedGeo const& other) const
333  {
334  return std::min(MaxZ(), other.MaxZ()) > std::max(MinZ(), other.MinZ());
335  }
336 
338  bool Overlaps(BoxBoundedGeo const& other) const
339  {
340  return OverlapsX(other) && OverlapsY(other) && OverlapsZ(other);
341  }
342 
344  // -- END -- Overlaps ------------------------------------------------------
345 
357  static bool CoordinateContained(double c, double min, double max, double wiggle = 1.)
358  {
359  return (c >= (min > 0 ? min / wiggle : min * wiggle)) &&
360  (c <= (max < 0 ? max / wiggle : max * wiggle));
361  } // CoordinateContained()
362 
374  static bool CoordinateContained(double c, double const* range, double wiggle = 1.)
375  {
376  return CoordinateContained(c, range[0], range[1], wiggle);
377  }
378 
381 
392  Coord_t x_max,
393  Coord_t y_min,
394  Coord_t y_max,
395  Coord_t z_min,
396  Coord_t z_max)
397  {
398  c_min.SetXYZ(x_min, y_min, z_min);
399  c_max.SetXYZ(x_max, y_max, z_max);
400  SortCoordinates();
401  }
402 
408  void SetBoundaries(Coords_t lower, Coords_t upper)
409  {
410  c_min = lower;
411  c_max = upper;
412  SortCoordinates();
413  }
414 
422 
427  void ExtendToInclude(Point_t const& point)
428  {
429  set_min(c_min, point);
430  set_max(c_max, point);
431  }
432 
440  {
441  set_min(c_min, box.Min());
442  set_max(c_max, box.Max());
443  } // ExtendToInclude()
444 
446 
448 
459  std::vector<TVector3> GetIntersections(TVector3 const& TrajectoryStart,
460  TVector3 const& TrajectoryDirect) const;
461  std::vector<Point_t> GetIntersections(Point_t const& TrajectoryStart,
462  Vector_t const& TrajectoryDirect) const;
464 
466  static void set_min(Coord_t& var, Coord_t value)
467  {
468  if (value < var) var = value;
469  }
470 
472  static void set_max(Coord_t& var, Coord_t value)
473  {
474  if (value > var) var = value;
475  }
476 
478  static void set_min(Coords_t& var, Point_t const& value)
479  {
480  if (value.X() < var.X()) var.SetX(value.X());
481  if (value.Y() < var.Y()) var.SetY(value.Y());
482  if (value.Z() < var.Z()) var.SetZ(value.Z());
483  }
484 
486  static void set_max(Coords_t& var, Point_t const& value)
487  {
488  if (value.X() > var.X()) var.SetX(value.X());
489  if (value.Y() > var.Y()) var.SetY(value.Y());
490  if (value.Z() > var.Z()) var.SetZ(value.Z());
491  }
492 
493  private:
494  // we don't allow the derived classes to mess with the boundaries
497 
499  void SortCoordinates();
500 
501  }; // class BoxBoundedGeo
502 
503 } // namespace geo
504 
505 #endif // LARCOREALG_GEOMETRY_BOXBOUNDEDGEO_H
Float_t x
Definition: compare.C:6
bool OverlapsZ(BoxBoundedGeo const &other) const
Returns if the z coordinates covered by this and other box overlap.
void ExtendToInclude(Point_t const &point)
Extends the current box to also include the specified point.
void SetBoundaries(Coords_t lower, Coords_t upper)
Sets the boundaries in world coordinates as specified.
Coords_t::Scalar Coord_t
Type of the coordinate.
Definition: BoxBoundedGeo.h:34
Point_t Center() const
Returns the center point of the box.
double SizeX() const
Returns the full size in the X dimension.
Definition: BoxBoundedGeo.h:97
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double >, ROOT::Math::GlobalCoordinateSystemTag > Vector_t
Type for representation of momenta in 3D space.
Definition: geo_vectors.h:160
Point_t Max() const
Returns the corner point with the largest coordinates.
bool InFiducialX(double x, double margin) const
Returns whether TPC fiducial volume contains world x coordinate.
BoxBoundedGeo(Coord_t x_min, Coord_t x_max, Coord_t y_min, Coord_t y_max, Coord_t z_min, Coord_t z_max)
Constructor: sets the boundaries in world coordinates as specified.
Definition: BoxBoundedGeo.h:59
Float_t y
Definition: compare.C:6
Double_t z
Definition: plot.C:276
double MinX() const
Returns the world x coordinate of the start of the box.
Definition: BoxBoundedGeo.h:88
bool Overlaps(BoxBoundedGeo const &other) const
Returns if this and other box overlap.
BoxBoundedGeo()=default
Default constructor: sets an empty volume.
double CenterX() const
Returns the world x coordinate of the center of the box.
Definition: BoxBoundedGeo.h:94
double CenterZ() const
Returns the world z coordinate of the center of the box.
double MaxX() const
Returns the world x coordinate of the end of the box.
Definition: BoxBoundedGeo.h:91
bool InFiducialZ(double z, double margin) const
Returns whether TPC fiducial volume contains world z coordinate.
bool OverlapsY(BoxBoundedGeo const &other) const
Returns if the y coordinates covered by this and other box overlap.
static void set_max(Coords_t &var, Point_t const &value)
Sets each coordinate of var to the one in value if the latter is larger.
double SizeY() const
Returns the full size in the Y dimension.
static void set_min(Coords_t &var, Point_t const &value)
Sets each coordinate of var to the one in value if the latter is smaller.
double x_min
Definition: berger.C:15
static void set_min(Coord_t &var, Coord_t value)
Sets var to value if value is smaller than the current var value.
double HalfSizeZ() const
Returns the size from the center to the border on Z dimension.
Definitions of geometry vector data types.
bool OverlapsX(BoxBoundedGeo const &other) const
Returns if the x coordinates covered by this and other box overlap.
double MinZ() const
Returns the world z coordinate of the start of the box.
static void set_max(Coord_t &var, Coord_t value)
Sets var to value if value is larger than the current var value.
bool InFiducialY(double y, double margin) const
Returns whether TPC fiducial volume contains world y coordinate.
double value
Definition: spectrum.C:18
double MaxY() const
Returns the world y coordinate of the end of the box.
Coords_t c_max
maximum coordinates (x, y, z)
double x_max
Definition: berger.C:16
double SizeZ() const
Returns the full size in the Z dimension.
double HalfSizeX() const
Returns the size from the center to the border on X dimension.
Point_t Coords_t
Type of the coordinate triplet.
Definition: BoxBoundedGeo.h:33
ROOT::Math::PositionVector3D< ROOT::Math::Cartesian3D< double >, ROOT::Math::GlobalCoordinateSystemTag > Point_t
Type for representation of position in physical 3D space.
Definition: geo_vectors.h:180
bool InFiducialY(double y, double neg_margin, double pos_margin) const
Returns whether TPC fiducial volume contains world y coordinate.
Point_t Min() const
Returns the corner point with the smallest coordinates.
bool ContainsX(double x, double const wiggle=1) const
Returns whether this TPC contains the specified world x coordinate.
Coords_t c_min
minimum coordinates (x, y, z)
A base class aware of world box coordinatesAn object describing a simple shape can inherit from this ...
Definition: BoxBoundedGeo.h:31
void ExtendToInclude(BoxBoundedGeo const &box)
Extends the current box to also include the specified one.
void SortCoordinates()
Makes sure each coordinate of the minimum point is smaller than maximum.
double CenterY() const
Returns the world y coordinate of the center of the box.
void SetBoundaries(Coord_t x_min, Coord_t x_max, Coord_t y_min, Coord_t y_max, Coord_t z_min, Coord_t z_max)
Sets the boundaries in world coordinates as specified.
double MaxZ() const
Returns the world z coordinate of the end of the box.
BoxBoundedGeo(Coords_t lower, Coords_t upper)
Constructor: sets the boundaries in world coordinates as specified.
Definition: BoxBoundedGeo.h:79
void ExtendToInclude(Coord_t x, Coord_t y, Coord_t z)
Extends the current box to also include the specified point.
double HalfSizeY() const
Returns the size from the center to the border on Y dimension.
std::vector< TVector3 > GetIntersections(TVector3 const &TrajectoryStart, TVector3 const &TrajectoryDirect) const
Calculates the entry and exit points of a trajectory on the box surface.
static bool CoordinateContained(double c, double min, double max, double wiggle=1.)
Returns whether the specified coordinate is in a range.
bool ContainsYZ(double y, double z, double const wiggle=1) const
Returns if TPC contains the specified world y and z coordinates.
static bool CoordinateContained(double c, double const *range, double wiggle=1.)
Returns whether the specified coordinate is in a range.
bool InFiducialX(double x, double neg_margin, double pos_margin) const
Returns whether TPC fiducial volume contains world x coordinate.
bool InFiducialZ(double z, double neg_margin, double pos_margin) const
Returns whether TPC fiducial volume contains world z coordinate.
ROOT libraries.
double MinY() const
Returns the world y coordinate of the start of the box.
bool ContainsY(double y, double const wiggle=1) const
Returns whether this TPC contains the specified world y coordinate.
bool ContainsPosition(Point_t const &point, double wiggle=1.0) const
Returns whether this volume contains the specified point.
bool ContainsZ(double z, double const wiggle=1) const
Returns whether this TPC contains the specified world z coordinate.