Skip to content

Commit

Permalink
Merge pull request #10792 from dmitrijus/viz_online_fix_pr_75x
Browse files Browse the repository at this point in the history
Fix online DQM configuration for visualization (75x)
  • Loading branch information
cmsbuild committed Aug 17, 2015
2 parents 74b43e0 + c1d02fe commit 9a594c0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Expand Up @@ -5,7 +5,7 @@
"""
Example configuration for online reconstruction meant for visualization clients.
"""
from DQM.Integration.test.inputsource_cfi import options,runType,source
from DQM.Integration.config.inputsource_cfi import options,runType,source

# this is needed to map the names of the run-types chosen by DQM to the scenarios, ideally we could converge to the same names
#scenarios = {'pp_run': 'ppRun2','cosmic_run':'cosmicsRun2','hi_run':'HeavyIons'}
Expand All @@ -31,7 +31,7 @@

kwds = {}
# example of how to add a filer IN FRONT of all the paths, eg for HLT selection
#kwds['preFilter'] = 'DQM/Integration/python/test/visualizationPreFilter.hltfilter'
#kwds['preFilter'] = 'DQM/Integration/python/config/visualizationPreFilter.hltfilter'

process = scenario.visualizationProcessing(globalTag='DUMMY', writeTiers=['FEVT'], **kwds)

Expand All @@ -52,7 +52,7 @@
except:
pass

process.load("DQM.Integration.test.FrontierCondition_GT_autoExpress_cfi")
process.load("DQM.Integration.config.FrontierCondition_GT_autoExpress_cfi")

process.options = cms.untracked.PSet(
Rethrow = cms.untracked.vstring('ProductNotFound'),
Expand Down
6 changes: 3 additions & 3 deletions DQM/Integration/python/clients/visualization-live_cfg.py
Expand Up @@ -5,7 +5,7 @@
"""
Example configuration for online reconstruction meant for visualization clients.
"""
from DQM.Integration.test.inputsource_cfi import options,runType,source
from DQM.Integration.config.inputsource_cfi import options,runType,source

# this is needed to map the names of the run-types chosen by DQM to the scenarios, ideally we could converge to the same names
#scenarios = {'pp_run': 'ppRun2','cosmic_run':'cosmicsRun2','hi_run':'HeavyIons'}
Expand All @@ -31,7 +31,7 @@

kwds = {}
# example of how to add a filer IN FRONT of all the paths, eg for HLT selection
#kwds['preFilter'] = 'DQM/Integration/python/test/visualizationPreFilter.hltfilter'
#kwds['preFilter'] = 'DQM/Integration/python/config/visualizationPreFilter.hltfilter'

process = scenario.visualizationProcessing(globalTag='DUMMY', writeTiers=['FEVT'], **kwds)

Expand All @@ -52,7 +52,7 @@
except:
pass

process.load("DQM.Integration.test.FrontierCondition_GT_autoExpress_cfi")
process.load("DQM.Integration.config.FrontierCondition_GT_autoExpress_cfi")

process.options = cms.untracked.PSet(
Rethrow = cms.untracked.vstring('ProductNotFound'),
Expand Down

0 comments on commit 9a594c0

Please sign in to comment.