File indexing completed on 2024-04-06 12:03:36
0001 import FWCore.ParameterSet.Config as cms
0002 generator = cms.EDFilter("Pythia8PtGun",
0003 PGunParameters = cms.PSet(
0004 MaxPt = cms.double(1000.01),
0005 MinPt = cms.double(999.99),
0006 ParticleID = cms.vint32(-13),
0007 AddAntiParticle = cms.bool(True),
0008 MaxEta = cms.double(2.5),
0009 MaxPhi = cms.double(3.14159265359),
0010 MinEta = cms.double(-2.5),
0011 MinPhi = cms.double(-3.14159265359)
0012 ),
0013 Verbosity = cms.untracked.int32(0),
0014 psethack = cms.string('single mu pt 1000'),
0015 firstRun = cms.untracked.uint32(1),
0016 PythiaParameters = cms.PSet(parameterSets = cms.vstring())
0017 )