File indexing completed on 2024-04-06 12:10:31
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("CTPPSRawToDigiTestStandardSequence")
0004
0005
0006 process.MessageLogger = cms.Service("MessageLogger",
0007 cerr = cms.untracked.PSet(
0008 threshold = cms.untracked.string('WARNING')
0009 )
0010 )
0011
0012
0013 process.source = cms.Source("NewEventStreamFileReader",
0014 fileNames = cms.untracked.vstring(
0015
0016 'file:/eos/cms/store/group/dpg_ctpps/comm_ctpps/TotemTiming/Minidaq/519/run312519_ls0002_streamA_StorageManager.dat'
0017 )
0018 )
0019
0020 process.maxEvents = cms.untracked.PSet(
0021 input = cms.untracked.int32(10)
0022 )
0023
0024 process.verbosity = cms.untracked.PSet(
0025 input = cms.untracked.int32(10)
0026 )
0027
0028
0029 process.load("EventFilter.CTPPSRawToDigi.ctppsRawToDigi_cff")
0030
0031
0032 process.p = cms.Path(
0033 process.ctppsRawToDigi
0034 )
0035
0036
0037 process.output = cms.OutputModule("PoolOutputModule",
0038 fileName = cms.untracked.string("file:./totemTiming_digi.root"),
0039 outputCommands = cms.untracked.vstring(
0040 'drop *',
0041 'keep *_*totemTimingRawToDigi_*_*',
0042 )
0043 )
0044
0045 process.outpath = cms.EndPath(process.output)
0046