From 0159f08384798f4615fb935914ef499ac774f862 Mon Sep 17 00:00:00 2001
From: Paul Gessinger <paul.gessinger@cern.ch>
Date: Wed, 17 Jul 2019 12:12:43 +0200
Subject: [PATCH] Adapt to inclusion of time component

---
 .../include/ACTFW/Propagation/PropagationAlgorithm.ipp     | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/Algorithms/Propagation/include/ACTFW/Propagation/PropagationAlgorithm.ipp b/Algorithms/Propagation/include/ACTFW/Propagation/PropagationAlgorithm.ipp
index 98280a2d..168f03aa 100644
--- a/Algorithms/Propagation/include/ACTFW/Propagation/PropagationAlgorithm.ipp
+++ b/Algorithms/Propagation/include/ACTFW/Propagation/PropagationAlgorithm.ipp
@@ -160,11 +160,12 @@ PropagationAlgorithm<propagator_t>::execute(
     double p      = pt / sin(theta);
     double charge = qDist(rng) > 0.5 ? 1. : -1.;
     double qop    = charge / p;
+    double t = 0;
     // parameters
-    Acts::ActsVectorD<5> pars;
-    pars << d0, z0, phi, theta, qop;
+    Acts::BoundVector pars;
+    pars << d0, z0, phi, theta, qop, t;
     // some screen output
-    std::unique_ptr<Acts::ActsSymMatrixD<5>> cov = nullptr;
+    std::unique_ptr<Acts::BoundMatrix> cov = nullptr;
 
     Acts::Vector3D sPosition(0., 0., 0.);
     Acts::Vector3D sMomentum(0., 0., 0.);
-- 
GitLab