Skip to content
Snippets Groups Projects

Vertex extrapolation

Merged Alessio Piucci requested to merge VertexExtrap into master
1 unresolved thread
Files
4
+ 7
7
@@ -40,20 +40,20 @@ class TFRState : public TObject {
/*! Set the state vector */
inline void SetStateVect(const double x[5]){
state_vect.SetElements(x);};
/*! Set the state vector */
inline void SetP(const double _P[25]){
P = TMatrixD(5,5,_P);};
/*! Set the state vector */
inline void SetStateVect(const TVectorD vect){
state_vect = vect;};
/*! Set the state vector */
/*! Set the covariance matrix */
inline void SetP(const double _P[25]){
P = TMatrixD(5,5,_P);};
/*! Set the covariance matrix */
inline void SetP(const TMatrixD cov){
P = cov;};
/*! Set chi2 */
/*! Set the chi2 */
inline void SetChi2(const double _chi2){chi2=_chi2;};
/*! Update the tx and ty */
Loading