File indexing completed on 2023-06-11 22:42:17
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process('RECO')
0004
0005
0006 process.load('Configuration.StandardSequences.Services_cff')
0007 process.load('FWCore.MessageService.MessageLogger_cfi')
0008 process.MessageLogger.cerr.threshold = "DEBUG"
0009
0010 process.MessageLogger.debugModules = ["Totem"]
0011
0012 process.load('Configuration.EventContent.EventContent_cff')
0013
0014
0015
0016
0017
0018
0019
0020
0021 process.source = cms.Source("NewEventStreamFileReader",
0022 fileNames = cms.untracked.vstring('http://cmsrep.cern.ch/cmssw/download/data/RecoPPS/Local/V1/run364983_ls0001_streamA_StorageManager.dat'
0023
0024 )
0025 )
0026
0027 process.maxEvents = cms.untracked.PSet(
0028 input = cms.untracked.int32(1)
0029 )
0030
0031
0032 process.load('CalibPPS.ESProducers.totemT2DAQMapping_cff')
0033 process.load('EventFilter.CTPPSRawToDigi.totemT2Digis_cfi')
0034 process.totemT2Digis.rawDataTag = cms.InputTag("rawDataCollector")
0035 process.totemDAQMappingESSourceXML.verbosity = 1
0036 process.totemT2Digis.RawUnpacking.verbosity = 1
0037 process.totemT2Digis.RawToDigi.verbosity = 3
0038 process.totemT2Digis.RawToDigi.useOlderT2TestFile = True
0039 process.totemT2Digis.RawToDigi.printUnknownFrameSummary = True
0040 process.totemT2Digis.RawToDigi.printErrorSummary = True
0041 process.totemDAQMappingESSourceXML.multipleChannelsPerPayload = True
0042
0043
0044
0045
0046
0047
0048 process.output = cms.OutputModule("PoolOutputModule",
0049 fileName = cms.untracked.string("file:output-miniDaq2303-T2testFile-ver2.1-noRecHits--1ev.root"),
0050 outputCommands = cms.untracked.vstring(
0051 'drop *',
0052 'keep *_totemT2*_*_*',
0053 ),
0054 )
0055
0056
0057 process.p = cms.Path(
0058 process.totemT2Digis
0059
0060 )
0061
0062 process.outpath = cms.EndPath(process.output)