From c6bc8f4428aaba54c621de3ae4c4b1c791018aca Mon Sep 17 00:00:00 2001 From: Thomas Madlener Date: Wed, 23 Oct 2024 14:31:07 +0200 Subject: [PATCH] Make sure that bit numbers are different for tertiary vertices --- edm4hep.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edm4hep.yaml b/edm4hep.yaml index 21550e39b..5fff0bc63 100644 --- a/edm4hep.yaml +++ b/edm4hep.yaml @@ -558,7 +558,7 @@ datatypes: // Reserved bits for the type flagword\n static constexpr int BITPrimaryVertex = 1;\n static constexpr int BITSecondaryVertex = 2;\n - static constexpr int BITTertiaryVertex = 2;\n + static constexpr int BITTertiaryVertex = 3;\n /// Check if this is a primary vertex\n bool isPrimary() const { return utils::checkBit(getType(), BITPrimaryVertex); }\n