Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:18:45

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # import a full HLT menu
0004 import sys, os
0005 sys.path.append( '%s/src/HLTrigger/Configuration/test' % os.environ['CMSSW_BASE'] )
0006 sys.path.append( '%s/src/HLTrigger/Configuration/test' % os.environ['CMSSW_RELEASE_BASE'] )
0007 from OnData_HLT_GRun import process
0008 
0009 # options
0010 
0011 process.options = cms.untracked.PSet(
0012     wantSummary = cms.untracked.bool( True )
0013 )
0014 
0015 process.source.fileNames = (
0016     '/store/group/dpg_trigger/comm_trigger/TriggerStudiesGroup/Timing/sample.root',
0017 )
0018 
0019 process.maxEvents.input = -1
0020 
0021 # load and replace the FastTimerService
0022 if process.FastTimerService:
0023   del process.FastTimerService
0024 
0025 process.load('HLTrigger/Timer/FastTimerService_cff')
0026 process.FastTimerService.printRunSummary          = True
0027 process.FastTimerService.printJobSummary          = True
0028 process.FastTimerService.enableDQM                = True
0029 process.FastTimerService.enableDQMbyModule        = True
0030 process.FastTimerService.enableDQMbyLumiSection   = True
0031 process.FastTimerService.enableDQMbyProcesses     = True