diff --git a/HltIntegrationTests/tests/options/hlt2_analysis/read_hlt2.py b/HltIntegrationTests/tests/options/hlt2_analysis/read_hlt2.py index 8514d59cba960359ef4531b49b1838b32d991800..4a413d7b1d5e5e73d35ce963b7d1664a8cee4f02 100644 --- a/HltIntegrationTests/tests/options/hlt2_analysis/read_hlt2.py +++ b/HltIntegrationTests/tests/options/hlt2_analysis/read_hlt2.py @@ -20,6 +20,7 @@ from Configurables import ( ApplicationMgr, DecayTreeTuple, LHCbApp, + LHCb__UnpackRawEvent as UnpackRawEvent, createODIN, HltANNSvc, ) @@ -40,8 +41,10 @@ def get_hlt2_unpackers(is_simulation): This is a temporary measure until support for Run 3 HLT2 output is added to an LHCb application. """ - - reading_algs = ([reading.decoder()] + reading.unpackers() + [createODIN()]) + reading_algs = ([reading.decoder()] + reading.unpackers() + [ + UnpackRawEvent( + BankTypes=['ODIN'], RawBankLocations=["DAQ/RawBanks/ODIN"]) + ] + [createODIN()]) if is_simulation: reading_algs = reading.mc_unpackers() + reading_algs return reading_algs