Skip to content

Commit

Permalink
Merge pull request #13535 from lveldere/fastsim-dqmNoEndPath-80X
Browse files Browse the repository at this point in the history
FastSim: Bugfix 80X: never run dqm sequence in EndPath
  • Loading branch information
davidlange6 committed Mar 1, 2016
2 parents 0485b63 + cd4e928 commit 440e538
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 @@ -1939,7 +1939,8 @@ def prepare_DQM(self, sequence = 'DQMOffline'):
self.renameHLTprocessInSequence(sequence)

# if both HLT and DQM are run in the same process, schedule [HLT]DQM in an EndPath
if 'HLT' in self.stepMap.keys():
# not for fastsim
if 'HLT' in self.stepMap.keys() and not self._options.fast:
# need to put [HLT]DQM in an EndPath, to access the HLT trigger results
setattr(self.process,pathName, cms.EndPath( getattr(self.process, sequence ) ) )
else:
Expand Down

0 comments on commit 440e538

Please sign in to comment.