Skip to content

Commit

Permalink
fix sequenceList and postSequenceList being the same object in prepar…
Browse files Browse the repository at this point in the history
…e_DQM
  • Loading branch information
Enrico Lusiani committed Dec 12, 2022
1 parent d2b40c9 commit 0bd33ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Configuration/Applications/python/ConfigBuilder.py
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 0bd33ff

Please sign in to comment.