Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:38:27

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 generator = cms.EDFilter("Pythia8PtGun",
0004                          PGunParameters = cms.PSet(
0005         MaxPt = cms.double(1000.01),
0006         MinPt = cms.double(999.99),
0007         ParticleID = cms.vint32(11),
0008         AddAntiParticle = cms.bool(True),        
0009         MaxEta = cms.double(2.5),
0010         MaxPhi = cms.double(3.14159265359),
0011         MinEta = cms.double(-2.5),
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 1000'),
0018                          firstRun = cms.untracked.uint32(1),
0019                          PythiaParameters = cms.PSet(parameterSets = cms.vstring())
0020                          )