LArSoft  v10_04_05
Liquid Argon Software toolkit - https://larsoft.org/
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
GeoVectorLocalTransformation.cxx
Go to the documentation of this file.
1 
10 // LArSoft libraries
12 
13 // ROOT libraries
14 #include "TGeoMatrix.h"
15 
16 // C++ standard library
17 #include <stdexcept> // std::runtime_error
18 
19 //------------------------------------------------------------------------------
20 template <>
22  double* world) const
23 {
24  details::checkVectorBufferOverlap(local, world);
25 
26  // need direct transformation
27  auto const local_v = vect::makeFromCoords<typename TransformationMatrix_t::Point>(local);
28  auto const world_v = fGeoMatrix(local_v);
29  vect::fillCoords(world, world_v);
30 }
31 
32 //------------------------------------------------------------------------------
33 template <>
35  double* world) const
36 {
37  details::checkVectorBufferOverlap(local, world);
38 
39  // need direct transformation
40  auto const local_v = vect::makeFromCoords<typename TransformationMatrix_t::Vector>(local);
41  auto const world_v = fGeoMatrix(local_v);
42  vect::fillCoords(world, world_v);
43 }
44 
45 //------------------------------------------------------------------------------
46 template <>
48  double* local) const
49 {
50  details::checkVectorBufferOverlap(local, world);
51 
52  // need inverse transformation
53  auto const world_v = vect::makeFromCoords<typename TransformationMatrix_t::Point>(world);
54  auto const local_v = fGeoMatrix.ApplyInverse(world_v);
55  vect::fillCoords(local, local_v);
56 }
57 
58 //------------------------------------------------------------------------------
59 template <>
61  double* local) const
62 {
63  details::checkVectorBufferOverlap(local, world);
64 
65  // need inverse transformation
66  auto const world_v = vect::makeFromCoords<typename TransformationMatrix_t::Vector>(world);
67  auto const local_v = fGeoMatrix.ApplyInverse(world_v);
68  vect::fillCoords(local, local_v);
69 }
70 
71 //------------------------------------------------------------------------------
72 ROOT::Math::Transform3D
74  TGeoMatrix const& trans)
75 {
76  double const* rot = trans.GetRotationMatrix();
77  double const* transl = trans.GetTranslation();
78  double const* scale = trans.GetScale();
79 
80  for (auto ptr = scale; ptr != scale + 3; ++ptr)
81  if (*ptr != 1.0)
82  throw std::runtime_error("Matrix with scaling can't be converted to Transform3D");
83 
84  return {rot[0],
85  rot[1],
86  rot[2],
87  transl[0],
88  rot[3],
89  rot[4],
90  rot[5],
91  transl[1],
92  rot[6],
93  rot[7],
94  rot[8],
95  transl[2]};
96 }
97 
98 //------------------------------------------------------------------------------
void LocalToWorld(double const *local, double *world) const
Transforms a point from local frame to world frame.
void LocalToWorldVect(double const *local, double *world) const
Transforms a vector from local frame to world frame.
unsigned int fillCoords(Coords &dest, Vector const &src)
Fills a coordinate array with the coordinates of a vector.
Double_t scale
Definition: plot.C:24
void WorldToLocal(double const *world, double *local) const
Transforms a point from world frame to local frame.
void WorldToLocalVect(const double *world, double *local) const
Transforms a vector from world frame to local frame.
Specialization of local-to-world transformations for ROOT GenVector.This is a header-only library...