File indexing completed on 2024-04-06 12:27:41
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.load('Configuration.EventContent.EventContent_cff')
0009
0010 process.load('Geometry.ForwardCommonData.totemT22021V2XML_cfi')
0011 process.load('Geometry.ForwardGeometry.totemGeometryESModule_cfi')
0012 process.load('RecoPPS.Local.totemT2RecHits_cfi')
0013
0014
0015
0016
0017 process.source = cms.Source('PoolSource',
0018 fileNames = cms.untracked.vstring(
0019 '/store/group/dpg_ctpps/comm_ctpps/TotemT2/RecoTest/emulated_digi_test.root'
0020 ),
0021 )
0022
0023 process.maxEvents = cms.untracked.PSet(
0024 input = cms.untracked.int32(-1)
0025 )
0026
0027 process.output = cms.OutputModule("PoolOutputModule",
0028 fileName = cms.untracked.string("file:output.root"),
0029 outputCommands = cms.untracked.vstring(
0030 'drop *',
0031 'keep *_totemT2*_*_*',
0032 ),
0033 )
0034
0035
0036 process.p = cms.Path(
0037 process.totemT2RecHits
0038 )
0039
0040 process.outpath = cms.EndPath(process.output)