File indexing completed on 2023-03-17 11:09:51
0001 import FWCore.ParameterSet.Config as cms
0002
0003
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
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
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