File indexing completed on 2024-04-06 12:18:43
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("DTMonitorStream")
0004
0005
0006 process.source = cms.Source("PoolSource",
0007 fileNames = cms.untracked.vstring(
0008 '/store/data/Run2022B/HLTPhysics/RAW/v1/000/355/456/00000/69b26b27-4bd1-4524-bc18-45f7b9b5e076.root',
0009 ),
0010 skipEvents = cms.untracked.uint32(0)
0011 )
0012
0013 process.maxEvents.input = 100
0014
0015 process.load("HLTrigger.special.hltDTROMonitorFilter_cfi")
0016 process.hltDTROMonitorFilter.inputLabel = 'rawDataCollector'
0017
0018
0019 process.MessageLogger = cms.Service("MessageLogger",
0020 debugModules = cms.untracked.vstring('*'),
0021 destinations = cms.untracked.vstring('cout'),
0022 categories = cms.untracked.vstring('DTDataIntegrityTask'),
0023 cout = cms.untracked.PSet(
0024 threshold = cms.untracked.string('WARNING'),
0025 noLineBreaks = cms.untracked.bool(False),
0026 DEBUG = cms.untracked.PSet(
0027 limit = cms.untracked.int32(0)
0028 ),
0029 INFO = cms.untracked.PSet(
0030 limit = cms.untracked.int32(-1)
0031 ),
0032 DTDataIntegrityTask = cms.untracked.PSet(
0033 limit = cms.untracked.int32(-1)
0034 )
0035 )
0036 )
0037
0038
0039
0040
0041
0042
0043
0044
0045
0046
0047
0048 process.out = cms.OutputModule("PoolOutputModule",
0049 outputCommands = cms.untracked.vstring(
0050 'drop *',
0051 'keep *_fedSelector_*_*'
0052 ),
0053 fileName = cms.untracked.string('dtDebugStream.root'),
0054 SelectEvents = cms.untracked.PSet(
0055 SelectEvents = cms.vstring('dtROMonitorSelection')
0056 )
0057 )
0058
0059
0060 process.dtROMonitorSelection = cms.Path(process.hltDTROMonitorFilter)
0061
0062 process.options = cms.untracked.PSet(
0063 fileMode = cms.untracked.string('FULLMERGE'),
0064 wantSummary = cms.untracked.bool(True)
0065 )
0066
0067 process.outpath = cms.EndPath(process.out)