From a93dafb50acfbec43fe1300fbcabef5d01a89b85 Mon Sep 17 00:00:00 2001 From: Florian Uhlig <f.uhlig@gsi.de> Date: Thu, 28 Jul 2022 07:49:54 +0200 Subject: [PATCH] Fix schema evolution With commit 892f01a1c63610b02ebb5b7187db3c9aa0278b71 from 23.03.22 the layout of the data class CbmTsEventHeader was changed by adding a new data member. At that time it was forgotten to also increase the version number. This commit increases the version number and corrects the issue. --- core/data/CbmTsEventHeader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/data/CbmTsEventHeader.h b/core/data/CbmTsEventHeader.h index 5857dbc270..d77d7343d5 100644 --- a/core/data/CbmTsEventHeader.h +++ b/core/data/CbmTsEventHeader.h @@ -110,6 +110,6 @@ protected: /** @brief nDigis in "this" timeslice measured by the BMON */ uint64_t fNDigisBmon = 0; - ClassDef(CbmTsEventHeader, 6) + ClassDef(CbmTsEventHeader, 7) }; #endif -- GitLab