File indexing completed on 2024-04-06 12:30:39
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("PROInputAnal")
0004
0005 process.RandomNumberGeneratorService = cms.Service("RandomNumberGeneratorService",
0006 moduleSeeds = cms.PSet(
0007 Analyzer = cms.untracked.uint32(12345)
0008 )
0009 )
0010
0011 process.source = cms.Source("PoolSource",
0012 fileNames = cms.untracked.vstring('file:/data/becheva/MixingModule/dataFiles/relval/02C5A172-8203-DE11-86D7-001617C3B5D8TTBar.root')
0013 )
0014
0015 process.maxEvents = cms.untracked.PSet(
0016 input = cms.untracked.int32(1)
0017 )
0018
0019 process.Analyzer = cms.EDAnalyzer("SecSourceAnalyzer",
0020 dataStep2 = cms.bool(False),
0021 collSimTrack = cms.InputTag("g4SimHits"),
0022
0023 input = cms.SecSource("EmbeddedRootSource",
0024 type = cms.string('fixed'),
0025 nbPileupEvents = cms.PSet(
0026 averageNumber = cms.double(1.0)
0027 ),
0028 fileNames = cms.untracked.vstring('file:/data/becheva/MixingModule/dataFiles/relval/02C5A172-8203-DE11-86D7-001617C3B5D8TTBar.root')
0029 )
0030 )
0031
0032 process.p = cms.Path(process.Analyzer)