14 #include "TGeoMatrix.h" 24 details::checkVectorBufferOverlap(local, world);
27 auto const local_v = vect::makeFromCoords<typename TransformationMatrix_t::Point>(local);
28 auto const world_v = fGeoMatrix(local_v);
37 details::checkVectorBufferOverlap(local, world);
40 auto const local_v = vect::makeFromCoords<typename TransformationMatrix_t::Vector>(local);
41 auto const world_v = fGeoMatrix(local_v);
50 details::checkVectorBufferOverlap(local, world);
53 auto const world_v = vect::makeFromCoords<typename TransformationMatrix_t::Point>(world);
54 auto const local_v = fGeoMatrix.ApplyInverse(world_v);
63 details::checkVectorBufferOverlap(local, world);
66 auto const world_v = vect::makeFromCoords<typename TransformationMatrix_t::Vector>(world);
67 auto const local_v = fGeoMatrix.ApplyInverse(world_v);
72 ROOT::Math::Transform3D
74 TGeoMatrix
const& trans)
76 double const* rot = trans.GetRotationMatrix();
77 double const* transl = trans.GetTranslation();
78 double const*
scale = trans.GetScale();
80 for (
auto ptr = scale; ptr != scale + 3; ++ptr)
82 throw std::runtime_error(
"Matrix with scaling can't be converted to Transform3D");
unsigned int fillCoords(Coords &dest, Vector const &src)
Fills a coordinate array with the coordinates of a vector.