test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SingleMuPt40Fwdv2_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 generator = cms.EDProducer("FlatRandomPtGunProducer",
4  PGunParameters = cms.PSet(
5  MaxPt = cms.double(40.01),
6  MinPt = cms.double(39.99),
7  PartID = cms.vint32(-13),
8  MinPhi = cms.double(-3.14159265359),
9  MaxPhi = cms.double(3.14159265359),
10  MinEta = cms.double(-2.5),
11  MaxEta = cms.double(2.5)
12  ),
13  Verbosity = cms.untracked.int32(0),
14  psethack = cms.string('single mu pt 40 forward'),
15  AddAntiParticle = cms.bool(True),
16  firstRun = cms.untracked.uint32(1)
17 )
18