Skip to content

Commit

Permalink
add a filter sequence if it is present in the fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
vlimant committed Feb 12, 2025
1 parent 2e0d63c commit 8222e97
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Configuration/Applications/python/ConfigBuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -1447,7 +1447,8 @@ def prepare_GEN(self, stepSpec = None):
self._options.nConcurrentIOVs = 1
elif isinstance(theObject, cms.Sequence) or isinstance(theObject, cmstypes.ESProducer):
self._options.inlineObjects+=','+name

if name == 'ProductionFilterSequence':
self.productionFilterSequence = 'ProductionFilterSequence'
if stepSpec == self.GENDefaultSeq or stepSpec == 'pgen_genonly':
if 'ProductionFilterSequence' in genModules and ('generator' in genModules):
self.productionFilterSequence = 'ProductionFilterSequence'
Expand Down

0 comments on commit 8222e97

Please sign in to comment.