Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 generator = cms.EDProducer("FlatRandomPtGunProducer",
00004 PGunParameters = cms.PSet(
00005 MaxPt = cms.double(100.01),
00006 MinPt = cms.double(1.99),
00007 PartID = cms.vint32(13),
00008 MaxEta = cms.double(0.9),
00009 MaxPhi = cms.double(3.14159265359),
00010 MinEta = cms.double(2.4),
00011 MinPhi = cms.double(-3.14159265359)
00012
00013 ),
00014 Verbosity = cms.untracked.int32(0),
00015 AddAntiParticle = cms.bool(False),
00016 firstRun = cms.untracked.uint32(1)
00017 )