Skip to content

Commit

Permalink
Deactivate LCFIPlus for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Zehvogel committed Jun 6, 2024
1 parent bfaa0ca commit 7b73559
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CLDConfig/CLDReconstruction.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand Down Expand Up @@ -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)

Expand Down

0 comments on commit 7b73559

Please sign in to comment.