Skip to content

Commit

Permalink
Merge pull request #40293 from elusian/fix_postsequences
Browse files Browse the repository at this point in the history
Fix `PostDQMOffline*` sequences in cmsDriver.py
  • Loading branch information
cmsbuild authored Dec 13, 2022
2 parents ed64f85 + 0bd33ff commit 9bdff61
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 @@ -1976,7 +1976,8 @@ def prepare_DQM(self, stepSpec = 'DQMOffline'):
# any 'DQM' job should use DQMStore in non-legacy mode (but not HARVESTING)
self.loadAndRemember("DQMServices/Core/DQMStoreNonLegacy_cff")
_,_dqmSeq,_ = self.loadDefaultOrSpecifiedCFF(stepSpec,self.DQMOFFLINEDefaultCFF)
sequenceList=postSequenceList=_dqmSeq.split('+')
sequenceList=_dqmSeq.split('+')
postSequenceList=_dqmSeq.split('+')
from DQMOffline.Configuration.autoDQM import autoDQM
self.expandMapping(sequenceList,autoDQM,index=0)
self.expandMapping(postSequenceList,autoDQM,index=1)
Expand Down

0 comments on commit 9bdff61

Please sign in to comment.