This class contains the measured average boost vector vec(beta) = (beta_x, beta_y, beta_z) = vec(p_e+e-)/E_e+e- of the center-of-mass system in the lab frame and its uncertainty.
More...
#include <CollisionBoostVector.h>
|
bool | operator== (const CollisionBoostVector &other) const |
| equality operator
|
|
void | setBoost (const TVector3 &boost, const TMatrixDSym &covariance) |
| Set the boost vector and its error matrix.
|
|
const TVector3 & | getBoost () const |
| Get the measured average boost vector.
|
|
const TMatrixDSym & | getBoostCovariance () const |
| Get the error matrix of the measured average boost vector.
|
|
|
| ClassDef (CollisionBoostVector, 1) |
| Measured average boost vector of CMS in lab frame and its uncertainty.
|
|
|
TVector3 | m_boost |
| Average boost vector of the center-of-mass system in the lab frame.
|
|
TMatrixDSym | m_boostCovariance {3} |
| Covariance matrix of the boost vector.
|
|
This class contains the measured average boost vector vec(beta) = (beta_x, beta_y, beta_z) = vec(p_e+e-)/E_e+e- of the center-of-mass system in the lab frame and its uncertainty.
Definition at line 23 of file CollisionBoostVector.h.
◆ getBoost()
const TVector3 & getBoost |
( |
| ) |
const |
|
inline |
Get the measured average boost vector.
Definition at line 43 of file CollisionBoostVector.h.
44 {
45 return m_boost;
46 }
◆ getBoostCovariance()
const TMatrixDSym & getBoostCovariance |
( |
| ) |
const |
|
inline |
Get the error matrix of the measured average boost vector.
Definition at line 49 of file CollisionBoostVector.h.
50 {
51 return m_boostCovariance;
52 }
◆ operator==()
equality operator
Definition at line 27 of file CollisionBoostVector.h.
28 {
29 return other.m_boost == m_boost && other.m_boostCovariance == m_boostCovariance;
30 }
◆ setBoost()
void setBoost |
( |
const TVector3 & | boost, |
|
|
const TMatrixDSym & | covariance ) |
|
inline |
Set the boost vector and its error matrix.
- Parameters
-
boost | boost vector (beta_x, beta_y, beta_z) |
covariance | error matrix of the boost vector. |
Definition at line 36 of file CollisionBoostVector.h.
37 {
38 m_boost = boost;
39 m_boostCovariance = covariance;
40 }
◆ m_boost
Average boost vector of the center-of-mass system in the lab frame.
Definition at line 57 of file CollisionBoostVector.h.
◆ m_boostCovariance
TMatrixDSym m_boostCovariance {3} |
|
private |
The documentation for this class was generated from the following file: