CMS 3D CMS Logo

SingleMuPt1000_Eta2p85_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(1000.01),
6  MinPt = cms.double(999.99),
7  ParticleID = cms.vint32(-13),
8  AddAntiParticle = cms.bool(True),
9  MaxEta = cms.double(2.85),
10  MaxPhi = cms.double(3.14159265359),
11  MinEta = cms.double(-2.85),
12  MinPhi = cms.double(-3.14159265359)
13  ),
14  Verbosity = cms.untracked.int32(0),
15  psethack = cms.string('single mu pt 1000'),
16  firstRun = cms.untracked.uint32(1),
17  PythiaParameters = cms.PSet(parameterSets = cms.vstring())
18  )