CMS 3D CMS Logo

SingleElectronPt35_pythia8_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 generator = cms.EDFilter("Pythia8PtGun",
4  PGunParameters = cms.PSet(
5  MaxPt = cms.double(35.01),
6  MinPt = cms.double(34.99),
7  ParticleID = cms.vint32(11),
8  AddAntiParticle = cms.bool(True),
9  MaxEta = cms.double(2.5),
10  MaxPhi = cms.double(3.14159265359),
11  MinEta = cms.double(-2.5),
12  MinPhi = cms.double(-3.14159265359)
13 
14  ),
15  Verbosity = cms.untracked.int32(0),
16  psethack = cms.string('single electron pt 35'),
17  firstRun = cms.untracked.uint32(1),
18  PythiaParameters = cms.PSet(parameterSets = cms.vstring())
19  )