From 7b7355981c69c15d476cd4305b91c6e6092f40ab Mon Sep 17 00:00:00 2001 From: Leonhard Reichenbach Date: Tue, 28 May 2024 14:24:04 +0200 Subject: [PATCH] Deactivate LCFIPlus for now --- CLDConfig/CLDReconstruction.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CLDConfig/CLDReconstruction.py b/CLDConfig/CLDReconstruction.py index ef5b1aa..57ebeee 100644 --- a/CLDConfig/CLDReconstruction.py +++ b/CLDConfig/CLDReconstruction.py @@ -28,6 +28,7 @@ parser.add_argument("--inputFiles", action="extend", nargs="+", metavar=("file1", "file2"), help="One or multiple input files") parser.add_argument("--outputBasename", help="Basename of the output file(s)", default="output") parser.add_argument("--trackingOnly", action="store_true", help="Run only track reconstruction", default=False) +parser.add_argument("--enableLCFIPlus", action="store_true", help="Enable LCFIPlus dependent parts", default=False) reco_args = parser.parse_known_args()[0] algList = [] @@ -123,7 +124,9 @@ if not reco_args.trackingOnly: sequenceLoader.load("HighLevelReco/PFOSelector") sequenceLoader.load("HighLevelReco/JetClusteringOrRenaming") - sequenceLoader.load("HighLevelReco/JetAndVertex") + # FIXME: LCFIPlus causes occasional breakage: https://github.com/lcfiplus/LCFIPlus/issues/69 + if reco_args.enableLCFIPlus: + sequenceLoader.load("HighLevelReco/JetAndVertex") # event number processor, down here to attach the conversion back to edm4hep to it algList.append(EventNumber)