File indexing completed on 2024-04-06 12:03:37
0001 import FWCore.ParameterSet.Config as cms
0002
0003 generator = cms.EDFilter("Pythia8EGun",
0004 PGunParameters = cms.PSet(
0005 ParticleID = cms.vint32(111),
0006 AddAntiParticle = cms.bool(False),
0007 MaxEta = cms.double(3.0),
0008 MaxPhi = cms.double(3.14159265359),
0009 MinEta = cms.double(-3.0),
0010 MinE = cms.double(9.99),
0011 MinPhi = cms.double(-3.14159265359),
0012 MaxE = cms.double(10.01)
0013 ),
0014 Verbosity = cms.untracked.int32(0),
0015 psethack = cms.string('single pi0 E 10'),
0016 firstRun = cms.untracked.uint32(1),
0017 PythiaParameters = cms.PSet(parameterSets = cms.vstring())
0018 )