From 17c53688f3855787492fad29ba8ebb9f06141c94 Mon Sep 17 00:00:00 2001 From: Sebastien Ponce Date: Fri, 3 Nov 2023 11:39:59 +0100 Subject: [PATCH] adapted to changed in LHCb --- Rec/Allen/python/Allen/config.py | 2 +- configuration/python/AllenCore/gaudi_allen_generator.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Rec/Allen/python/Allen/config.py b/Rec/Allen/python/Allen/config.py index 703813ab58d..56d928e03b6 100755 --- a/Rec/Allen/python/Allen/config.py +++ b/Rec/Allen/python/Allen/config.py @@ -32,7 +32,7 @@ def allen_non_event_data_config(dump_geometry=False, return dump_geometry, out_dir, beamline_offset -def allen_odin(): +def allen_odin(stream=""): return AllenODINProducer().ODIN diff --git a/configuration/python/AllenCore/gaudi_allen_generator.py b/configuration/python/AllenCore/gaudi_allen_generator.py index 6340c566779..29a53be1d7b 100644 --- a/configuration/python/AllenCore/gaudi_allen_generator.py +++ b/configuration/python/AllenCore/gaudi_allen_generator.py @@ -19,7 +19,7 @@ from PyConf import configurable @configurable def make_transposed_raw_banks(rawbank_list, make_raw=default_raw_event): return TransposeRawBanks( - RawEventLocations=[make_raw(bank_types=[k]) for k in rawbank_list], + RawEventLocations=[make_raw(bank_type=k) for k in rawbank_list], BankTypes=rawbank_list).AllenRawInput -- GitLab