From 6a52d461540dcbc2a21ca2d82175a28d2b73afb0 Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Thu, 3 Oct 2024 22:19:44 +0200 Subject: [PATCH 1/2] Print a warning when there isn't an input file --- CLDConfig/CLDReconstruction.py | 1 + 1 file changed, 1 insertion(+) diff --git a/CLDConfig/CLDReconstruction.py b/CLDConfig/CLDReconstruction.py index 107901b..c96f7f8 100644 --- a/CLDConfig/CLDReconstruction.py +++ b/CLDConfig/CLDReconstruction.py @@ -84,6 +84,7 @@ read.OutputLevel = INFO algList.append(read) else: + print('WARNING: No input files specified, this will fail') read = None MyAIDAProcessor = MarlinProcessorWrapper("MyAIDAProcessor") From 416a8e6e4780100567648dcd4c0e888536fc2054 Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Thu, 3 Oct 2024 22:20:14 +0200 Subject: [PATCH 2/2] Change text --- CLDConfig/CLDReconstruction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CLDConfig/CLDReconstruction.py b/CLDConfig/CLDReconstruction.py index c96f7f8..699fe48 100644 --- a/CLDConfig/CLDReconstruction.py +++ b/CLDConfig/CLDReconstruction.py @@ -84,7 +84,7 @@ read.OutputLevel = INFO algList.append(read) else: - print('WARNING: No input files specified, this will fail') + print('WARNING: No input files specified, the CLD Reconstruction will fail') read = None MyAIDAProcessor = MarlinProcessorWrapper("MyAIDAProcessor")