Skip to content

Commit

Permalink
init non-zero covariance matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
fabferro committed Jul 12, 2022
1 parent 04d1617 commit a34b07e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion RecoPPS/Local/src/RPixPlaneCombinatoryTracking.cc
Expand Up @@ -195,7 +195,8 @@ void RPixPlaneCombinatoryTracking::findTracks(int run) {
double yatz0 = yat0 + ty * z0;

math::Vector<4>::type parameterVector{xatz0, yatz0, tx, ty};
math::Error<4>::type covarianceMatrix;
ROOT::Math::SVector<double, 10> v(0.01, 0.0, 0.01, 0.0, 0.0, 0.01, 0.0, 0.0, 0.0, 0.01);
math::Error<4>::type covarianceMatrix(v);

CTPPSPixelLocalTrack track(z0, parameterVector, covarianceMatrix, 0);

Expand Down

0 comments on commit a34b07e

Please sign in to comment.