Skip to content

Commit

Permalink
Merge pull request #40294 from elusian/fix_postsequences_12_6
Browse files Browse the repository at this point in the history
[12_6_X] Fix `PostDQMOffline*` sequences in cmsDriver.py
  • Loading branch information
cmsbuild authored Dec 14, 2022
2 parents fc4cafc + c0aa459 commit 548a19d
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 548a19d

Please sign in to comment.