From f85ad5f9b5625760ea242219d9d1a2f0ff5bda65 Mon Sep 17 00:00:00 2001 From: Thomas Madlener Date: Fri, 13 Dec 2024 11:43:00 +0100 Subject: [PATCH] Make sure to not fail on spuriously missing collection (#211) --- test/gaudi_opts/fccRec_e4h_input.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/gaudi_opts/fccRec_e4h_input.py b/test/gaudi_opts/fccRec_e4h_input.py index 43c44a2c..1e726eae 100644 --- a/test/gaudi_opts/fccRec_e4h_input.py +++ b/test/gaudi_opts/fccRec_e4h_input.py @@ -1687,7 +1687,7 @@ from Configurables import PodioOutput out = PodioOutput("PodioOutput", filename="my_output.root") -out.outputCommands = ["keep *"] +out.outputCommands = ["keep *", "drop RefinedVertexJets_PID_RefinedVertex"] algList.append(inp)