CMS 3D CMS Logo

SingleMuPt1000_pythia8_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 generator = cms.EDFilter("Pythia8PtGun",
3  PGunParameters = cms.PSet(
4  MaxPt = cms.double(1000.01),
5  MinPt = cms.double(999.99),
6  ParticleID = cms.vint32(-13),
7  AddAntiParticle = cms.bool(True),
8  MaxEta = cms.double(2.5),
9  MaxPhi = cms.double(3.14159265359),
10  MinEta = cms.double(-2.5),
11  MinPhi = cms.double(-3.14159265359) ## in radians
12  ),
13  Verbosity = cms.untracked.int32(0), ## set to 1 (or greater) for printouts
14  psethack = cms.string('single mu pt 1000'),
15  firstRun = cms.untracked.uint32(1),
16  PythiaParameters = cms.PSet(parameterSets = cms.vstring())
17  )