Skip to content

Commit b06577f

Browse files
committed
fix buggy customization function customiseHLTFor46647
1 parent 24289e7 commit b06577f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

HLTrigger/Configuration/python/customizeHLTforCMSSW.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ def customiseHLTFor46647(process):
5656
# Replace it with cms.uint32
5757
prod.DontCountDetsAboveNClusters = cms.uint32(value)
5858

59-
for prod in producers_by_type(process, 'SeedCombiner'):
60-
if hasattr(prod, "PairCollection"):
61-
delattr(prod, "PairCollection")
62-
if hasattr(prod, "TripletCollection"):
63-
delattr(prod, "TripletCollection")
59+
for prod in producers_by_type(process, 'SeedCombiner'):
60+
if hasattr(prod, "PairCollection"):
61+
delattr(prod, "PairCollection")
62+
if hasattr(prod, "TripletCollection"):
63+
delattr(prod, "TripletCollection")
6464

6565
return process
6666

0 commit comments

Comments
 (0)