Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 source = cms.Source("EmptySource")
00004
00005 generator = cms.EDProducer("Pythia6JetGun",
00006 PGunParameters = cms.PSet(
00007 ParticleID = cms.vint32(211, -211, 111, 111, 130),
00008
00009 MinE = cms.double(0.5),
00010 MaxE = cms.double(2.0),
00011
00012 MinP = cms.double(20.0),
00013 MaxP = cms.double(20.0),
00014 MinPhi = cms.double(-3.1415926535),
00015 MaxPhi = cms.double(+3.1415926535),
00016 MinEta = cms.double(-2.4),
00017 MaxEta = cms.double(2.4)
00018 ),
00019
00020
00021 PythiaParameters = cms.PSet(
00022 parameterSets = cms.vstring()
00023 )
00024 )
00025
00026 ProductionFilterSequence = cms.Sequence(generator)