19 #ifndef ROOT_Math_GenVector_PtEtaPhiE4D
20 #define ROOT_Math_GenVector_PtEtaPhiE4D 1
51 template <
class ScalarType>
75 template <
class CoordSystem >
110 { dest[0] =
fPt; dest[1] =
fEta; dest[2] =
fPhi; dest[3] =
fE; }
154 :
fEta > etaMax<Scalar>() ?
fEta - etaMax<Scalar>()
155 :
fEta < -etaMax<Scalar>() ? -
fEta - etaMax<Scalar>() : 0;
174 return fE *
fE - p * p;
187 " Pt and Eta give P such that P^2 > E^2, so the mass would be imaginary");
213 " Pt and Eta give Pz such that Pz^2 > E^2, so the mass would be imaginary");
309 template <
class CoordSystem >
338 #if defined(__MAKECINT__) || defined(G__DICTIONARY)
370 #if defined(__MAKECINT__) || defined(G__DICTIONARY)
378 template <
class ScalarType>
384 #if defined(__MAKECINT__) || defined(G__DICTIONARY)
388 template <
class ScalarType>
394 template <
class ScalarType>
395 inline void PtEtaPhiE4D<ScalarType>::SetPy(
Scalar py) {
396 GenVector_exception
e(
"PtEtaPhiE4D::SetPx() is not supposed to be called");
398 PxPyPzE4D<Scalar>
v(*
this);
v.SetPy(py); *
this = PtEtaPhiE4D<Scalar>(
v);
400 template <
class ScalarType>
401 inline void PtEtaPhiE4D<ScalarType>::SetPz(
Scalar pz) {
402 GenVector_exception
e(
"PtEtaPhiE4D::SetPx() is not supposed to be called");
404 PxPyPzE4D<Scalar>
v(*
this);
v.SetPz(pz); *
this = PtEtaPhiE4D<Scalar>(
v);
406 template <
class ScalarType>
407 inline void PtEtaPhiE4D<ScalarType>::SetM(
Scalar m) {
408 GenVector_exception
e(
"PtEtaPhiE4D::SetM() is not supposed to be called");
410 PtEtaPhiM4D<Scalar>
v(*
this);
v.SetM(m);
411 *
this = PtEtaPhiE4D<Scalar>(
v);
414 #endif // endif __MAKE__CINT || G__DICTIONARY
423 #endif // ROOT_Math_GenVector_PtEtaPhiE4D
Class describing a 4D cylindrical coordinate system using Pt , Phi, Eta and E (or rho...
void SetPhi(Scalar phi)
set phi value
bool operator!=(const PtEtaPhiE4D &rhs) const
void SetPxPyPzE(Scalar px, Scalar py, Scalar pz, Scalar e)
set values using cartesian coordinate system
void GetCoordinates(Scalar &pt, Scalar &eta, Scalar &phi, Scalar &e) const
get internal data into 4 Scalar numbers
Scalar Et2() const
transverse energy squared
PtEtaPhiE4D()
Default constructor gives zero 4-vector.
Scalar Theta() const
polar angle
void GetCoordinates(Scalar dest[]) const
get internal data into an array of 4 Scalar numbers
Scalar Mt() const
transverse mass
void Scale(Scalar a)
Scale coordinate values by a scalar quantity a.
Scalar Et() const
transverse energy
Scalar P() const
magnitude of momentum
VecExpr< UnaryOp< Sqrt< T >, VecExpr< A, T, D >, T >, T, D > sqrt(const VecExpr< A, T, D > &rhs)
Class describing a 4D cartesian coordinate system (x, y, z, t coordinates) or momentum-energy vectors...
Scalar Mt2() const
transverse mass squared
Scalar Pt2() const
transverse spatial component squared
Scalar P2() const
squared magnitude of spatial components (momentum squared)
Scalar M() const
invariant mass
void Negate()
negate the 4-vector
void SetPt(Scalar pt)
set Pt value
void Throw(const char *)
function throwing exception, by creating internally a GenVector_exception only when needed ...
void SetCoordinates(Scalar pt, Scalar eta, Scalar phi, Scalar e)
Set internal data based on 4 Scalar numbers.
Scalar M2() const
vector magnitude squared (or mass squared)
void SetEta(Scalar eta)
set eta value
void SetCoordinates(const Scalar src[])
Set internal data based on an array of 4 Scalar numbers.
you should not use this method at all Int_t Int_t Double_t Double_t Double_t e
void SetE(Scalar e)
set E value
PtEtaPhiE4D(Scalar pt, Scalar eta, Scalar phi, Scalar e)
Constructor from pt, eta, phi, e values.
#define dest(otri, vertexptr)
PtEtaPhiE4D & operator=(const PtEtaPhiE4D &v)
assignment operator
Rotation3D::Scalar Scalar
PtEtaPhiE4D(const CoordSystem &c)
Generic constructor from any 4D coordinate system implementing Pt(), Eta(), Phi() and E() ...
bool operator==(const PtEtaPhiE4D &rhs) const
Exact equality.
PtEtaPhiE4D(const PtEtaPhiE4D &v)
copy constructor