From 91d63739927731db6af92c304ce258d0f8e1caea Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Wed, 26 Jun 2024 12:10:05 +0200 Subject: [PATCH] Fix all covmatrix setters --- scripts/createEDM4hepFile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/createEDM4hepFile.py b/scripts/createEDM4hepFile.py index 5a7731080..c7f211f9e 100644 --- a/scripts/createEDM4hepFile.py +++ b/scripts/createEDM4hepFile.py @@ -276,7 +276,7 @@ state.referencePoint = edm4hep.Vector3f( next(counter), next(counter), next(counter) ) - # state.setCovMatrix([next(counter) for _ in range(21)]) + state.CovMatrix = [next(counter) for _ in range(21)] track.addToTrackStates(state) track.addToTrackerHits(tracker_hit) track.addToTracks(track)