Skip to content

Commit

Permalink
Merge pull request #22945 from cms-tsg-storm/hltGetConfigurationFix_101X
Browse files Browse the repository at this point in the history
 Small bug fix in hltGetConfiguration (101X)
  • Loading branch information
cmsbuild committed Apr 16, 2018
2 parents 1770712 + 127e25e commit e1a1513
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HLTrigger/Configuration/python/Tools/confdb.py
Expand Up @@ -682,9 +682,9 @@ def buildPathList(self):
else:
# drop all output EndPaths but the Scouting ones, and drop the RatesMonitoring and DQMHistograms
paths.append( "-*Output" )
paths.append( "Scouting*Output" )
paths.append( "-RatesMonitoring")
paths.append( "-DQMHistograms")
if self.config.fragment: paths.append( "Scouting*Output" )

elif self.config.output in ('dqm', 'minimal', 'full'):
if self.config.paths:
Expand All @@ -693,8 +693,8 @@ def buildPathList(self):
else:
# drop all output EndPaths but the Scouting ones, and drop the RatesMonitoring
paths.append( "-*Output" )
paths.append( "Scouting*Output" )
paths.append( "-RatesMonitoring")
if self.config.fragment: paths.append( "Scouting*Output" )

else:
if self.config.paths:
Expand Down

0 comments on commit e1a1513

Please sign in to comment.