19#ifndef ROOT_Math_GenVector_Cartesian3D
20#define ROOT_Math_GenVector_Cartesian3D 1
45template <
class T =
double>
66 template <
class CoordSystem>
167 template <
class CoordSystem>
188 T
x()
const {
return X();}
189 T
y()
const {
return Y();}
190 T
z()
const {
return Z(); }
197 const T rho =
v.Rho();
200 fX = rho * std::cos(
v.Phi());
201 fY = rho * std::sin(
v.Phi());
211 const T rho =
v.Rho();
213 fX = rho * cos(
v.Phi());
215 fY = rho * sin(
v.Phi());
222#if defined(__MAKECINT__) || defined(G__DICTIONARY)
228 void SetTheta(
Scalar theta);
252#if defined(__MAKECINT__) || defined(G__DICTIONARY)
267void Cartesian3D<T>::SetR(
Scalar r) {
268 GenVector_exception
e(
"Cartesian3D::SetR() is not supposed to be called");
270 Polar3D<Scalar>
v(*
this);
v.SetR(
r); *
this = Cartesian3D<Scalar>(
v);
274void Cartesian3D<T>::SetTheta(
Scalar theta) {
275 GenVector_exception
e(
"Cartesian3D::SetTheta() is not supposed to be called");
277 Polar3D<Scalar>
v(*
this);
v.SetTheta(theta); *
this = Cartesian3D<Scalar>(
v);
281void Cartesian3D<T>::SetPhi(
Scalar phi) {
282 GenVector_exception
e(
"Cartesian3D::SetPhi() is not supposed to be called");
284 Polar3D<Scalar>
v(*
this);
v.SetPhi(phi); *
this = Cartesian3D<Scalar>(
v);
288void Cartesian3D<T>::SetRho(
Scalar rho) {
289 GenVector_exception
e(
"Cartesian3D::SetRho() is not supposed to be called");
291 CylindricalEta3D<Scalar>
v(*
this);
v.SetRho(rho);
292 *
this = Cartesian3D<Scalar>(
v);
296void Cartesian3D<T>::SetEta(
Scalar eta) {
297 GenVector_exception
e(
"Cartesian3D::SetEta() is not supposed to be called");
299 CylindricalEta3D<Scalar>
v(*
this);
v.SetEta(eta);
300 *
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 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
bool operator!=(const Cartesian3D &rhs) const
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
Cartesian3D(const Polar3D< T2 > &v)
void Scale(Scalar a)
scale the vector by a scalar quantity a
Cartesian3D()
Default constructor with x=y=z=0.
void SetCoordinates(Scalar xx, Scalar yy, Scalar zz)
Set internal data based on 3 Scalar numbers.
Cartesian3D(const CoordSystem &v)
Construct from any Vector or coordinate system implementing X(), Y() and Z()
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
This file contains a specialised ROOT message handler to test for diagnostic in unit tests.
#define dest(otri, vertexptr)