Skip to content

Commit 401a623

Browse files
authored
Merge pull request #47335 from vlimant/filter_in_fragment_151X
add a filter sequence if it is present in the fragment
2 parents b8776f5 + 8222e97 commit 401a623

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Configuration/Applications/python/ConfigBuilder.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1447,7 +1447,8 @@ def prepare_GEN(self, stepSpec = None):
14471447
self._options.nConcurrentIOVs = 1
14481448
elif isinstance(theObject, cms.Sequence) or isinstance(theObject, cmstypes.ESProducer):
14491449
self._options.inlineObjects+=','+name
1450-
1450+
if name == 'ProductionFilterSequence':
1451+
self.productionFilterSequence = 'ProductionFilterSequence'
14511452
if stepSpec == self.GENDefaultSeq or stepSpec == 'pgen_genonly':
14521453
if 'ProductionFilterSequence' in genModules and ('generator' in genModules):
14531454
self.productionFilterSequence = 'ProductionFilterSequence'

0 commit comments

Comments
 (0)