From 8b1cd11454516ca0186dd61e76cb1c49f50eb574 Mon Sep 17 00:00:00 2001
From: LukasChlad <l.chlad@gsi.de>
Date: Tue, 22 Aug 2023 15:45:26 +0200
Subject: [PATCH] Remove not well described is_event_base

In case of CbmMCDataManager the second variable is connected to legacy mode, not E-b-E settings. The default constructor have exactly the needed properties so no reason why to use specific one.
---
 .../PWG/common/production/run_analysis_tree_maker_json_config.C | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/macro/PWG/common/production/run_analysis_tree_maker_json_config.C b/macro/PWG/common/production/run_analysis_tree_maker_json_config.C
index 2e0f783ac9..0df344070c 100644
--- a/macro/PWG/common/production/run_analysis_tree_maker_json_config.C
+++ b/macro/PWG/common/production/run_analysis_tree_maker_json_config.C
@@ -97,7 +97,7 @@ void run_analysis_tree_maker_json_config(TString traPath = "test", TString rawPa
   // ------------------------------------------------------------------------
 
   // ----- Mc Data Manager   ------------------------------------------------
-  auto* mcManager = new CbmMCDataManager("MCManager", is_event_base);
+  auto* mcManager = new CbmMCDataManager();
   mcManager->AddFile(traFile);
   run->AddTask(mcManager);
   // ------------------------------------------------------------------------
-- 
GitLab