Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:34

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 generator = cms.EDFilter("Pythia8PtGun",
0004     PGunParameters = cms.PSet(
0005         MaxPt = cms.double(10.01),
0006         MinPt = cms.double(9.99),
0007         ParticleID = cms.vint32(11),
0008         AddAntiParticle = cms.bool(True),
0009         MaxEta = cms.double(4.0),
0010         MaxPhi = cms.double(3.14159265359),
0011         MinEta = cms.double(-4.0),
0012         MinPhi = cms.double(-3.14159265359) ## in radians
0013 
0014     ),
0015     Verbosity = cms.untracked.int32(0), ## set to 1 (or greater)  for printouts
0016 
0017     psethack = cms.string('single electron pt 10'),
0018     firstRun = cms.untracked.uint32(1),
0019     PythiaParameters = cms.PSet(parameterSets = cms.vstring())
0020 )