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