From 212a3c6cf8e0c4da0cf905eeda7dd0699aeaa501 Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Wed, 19 Jun 2024 22:05:27 +0200 Subject: [PATCH 1/2] Change probability to ndf in Vertex --- edm4hep.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edm4hep.yaml b/edm4hep.yaml index 3026f4fe9..71def32a3 100644 --- a/edm4hep.yaml +++ b/edm4hep.yaml @@ -539,7 +539,7 @@ datatypes: Members: - int32_t primary // boolean flag, if vertex is the primary vertex of the event - float chi2 // chi-squared of the vertex fit - - float probability // probability of the vertex fit + - float ndf // number of degrees of freedom of the vertex fit - edm4hep::Vector3f position // [mm] position of the vertex - edm4hep::CovMatrix3f covMatrix // covariance matrix of the position - int32_t algorithmType // type code for the algorithm that has been used to create the vertex From 11749d3916c206d624a13a9e610a85c88116ab66 Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Thu, 20 Jun 2024 08:03:35 +0200 Subject: [PATCH 2/2] Change ndf to int32_t --- edm4hep.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edm4hep.yaml b/edm4hep.yaml index 71def32a3..dbaa09f7a 100644 --- a/edm4hep.yaml +++ b/edm4hep.yaml @@ -539,7 +539,7 @@ datatypes: Members: - int32_t primary // boolean flag, if vertex is the primary vertex of the event - float chi2 // chi-squared of the vertex fit - - float ndf // number of degrees of freedom of the vertex fit + - int32_t ndf // number of degrees of freedom of the vertex fit - edm4hep::Vector3f position // [mm] position of the vertex - edm4hep::CovMatrix3f covMatrix // covariance matrix of the position - int32_t algorithmType // type code for the algorithm that has been used to create the vertex