From fa20c372c71c65562d3e8ca109689b49dcaf3018 Mon Sep 17 00:00:00 2001 From: tmadlener Date: Thu, 14 Mar 2024 16:15:09 +0100 Subject: [PATCH] Use CovMatrix4f instead of array --- test/utils/test_kinematics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils/test_kinematics.py b/test/utils/test_kinematics.py index c563ecf38..f8e025cda 100644 --- a/test/utils/test_kinematics.py +++ b/test/utils/test_kinematics.py @@ -48,7 +48,7 @@ def test_p4(self): 1.0, # charge 125.0, # mass 0.0, # goodnessOfPID - cppyy.gbl.std.array('float', 10)() # covMatrix + edm4hep.CovMatrix4f() # covMatrix ) self.assertEqual(p4(p), LVM(1.0, 2.0, 3.0, 125.0))