19#ifndef ROOT_Math_GenVector_Cartesian3D
20#define ROOT_Math_GenVector_Cartesian3D 1
45template <
class T =
double>
68 template <
class CoordSystem>
169 template <
class CoordSystem>
190 T
x()
const {
return X();}
191 T
y()
const {
return Y();}
192 T
z()
const {
return Z(); }
199 const T rho =
v.Rho();
202 fX = rho * std::cos(
v.Phi());
203 fY = rho * std::sin(
v.Phi());
213 const T rho =
v.Rho();
215 fX = rho * cos(
v.Phi());
217 fY = rho * sin(
v.Phi());
224#if defined(__MAKECINT__) || defined(G__DICTIONARY)
230 void SetTheta(
Scalar theta);
254#if defined(__MAKECINT__) || defined(G__DICTIONARY)
269void Cartesian3D<T>::SetR(
Scalar r) {
270 GenVector_exception
e(
"Cartesian3D::SetR() is not supposed to be called");
272 Polar3D<Scalar>
v(*
this);
v.SetR(
r); *
this = Cartesian3D<Scalar>(
v);
276void Cartesian3D<T>::SetTheta(
Scalar theta) {
277 GenVector_exception
e(
"Cartesian3D::SetTheta() is not supposed to be called");
279 Polar3D<Scalar>
v(*
this);
v.SetTheta(theta); *
this = Cartesian3D<Scalar>(
v);
283void Cartesian3D<T>::SetPhi(
Scalar phi) {
284 GenVector_exception
e(
"Cartesian3D::SetPhi() is not supposed to be called");
286 Polar3D<Scalar>
v(*
this);
v.SetPhi(phi); *
this = Cartesian3D<Scalar>(
v);
290void Cartesian3D<T>::SetRho(
Scalar rho) {
291 GenVector_exception
e(
"Cartesian3D::SetRho() is not supposed to be called");
293 CylindricalEta3D<Scalar>
v(*
this);
v.SetRho(rho);
294 *
this = Cartesian3D<Scalar>(
v);
298void Cartesian3D<T>::SetEta(
Scalar eta) {
299 GenVector_exception
e(
"Cartesian3D::SetEta() is not supposed to be called");
301 CylindricalEta3D<Scalar>
v(*
this);
v.SetEta(eta);
302 *
this = Cartesian3D<Scalar>(
v);
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t dest
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t r
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t src
Class describing a 3D cartesian coordinate system (x, y, z coordinates)
void SetXYZ(Scalar xx, Scalar yy, Scalar zz)
set all values using cartesian coordinates
static constexpr unsigned int Dimension
bool operator!=(const Cartesian3D &rhs) const
constexpr Cartesian3D(const CoordSystem &v)
Construct from any Vector or coordinate system implementing X(), Y() and Z()
bool operator==(const Cartesian3D &rhs) const
Exact equality.
void SetCoordinates(const Scalar src[])
Set internal data based on an array of 3 Scalar numbers.
Cartesian3D(const Cartesian3D &v)
copy constructor
void GetCoordinates(Scalar dest[]) const
get internal data into an array of 3 Scalar numbers
Cartesian3D & operator=(const Cartesian3D &v)
assignment operator
void Scale(Scalar a)
scale the vector by a scalar quantity a
Cartesian3D()
Default constructor with x=y=z=0.
constexpr Cartesian3D(const Polar3D< T2 > &v)
void SetCoordinates(Scalar xx, Scalar yy, Scalar zz)
Set internal data based on 3 Scalar numbers.
Cartesian3D(Scalar xx, Scalar yy, Scalar zz)
Constructor from x,y,z coordinates.
void SetZ(Scalar zz)
set the z coordinate value keeping x and y constant
void GetCoordinates(Scalar &xx, Scalar &yy, Scalar &zz) const
get internal data into 3 Scalar numbers
void SetX(Scalar xx)
set the x coordinate value keeping y and z constant
void SetY(Scalar yy)
set the y coordinate value keeping x and z constant
void Negate()
negate the vector
Class describing a polar coordinate system based on r, theta and phi Phi is restricted to be in the r...
Namespace for new Math classes and functions.
Scalar Eta_FromRhoZ(Scalar rho, Scalar z)
Calculate eta given rho and zeta.
VecExpr< UnaryOp< Sqrt< T >, VecExpr< A, T, D >, T >, T, D > sqrt(const VecExpr< A, T, D > &rhs)
Rotation3D::Scalar Scalar
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...