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