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