CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Py8PtGun_bb_cfi.py
Go to the documentation of this file.
2 
3 generator = cms.EDFilter(
4  "Pythia8PtGun",
5 
6  maxEventsToPrint = cms.untracked.int32(1),
7  pythiaPylistVerbosity = cms.untracked.int32(1),
8  pythiaHepMCVerbosity = cms.untracked.bool(True),
9 
10  PGunParameters = cms.PSet(
11  ParticleID = cms.vint32(5),
12  AddAntiParticle = cms.bool(True),
13  MinPhi = cms.double(-3.14159265359),
14  MaxPhi = cms.double(3.14159265359),
15  MinPt = cms.double(100.0),
16  MaxPt = cms.double(200.0),
17  MinEta = cms.double(0.0),
18  MaxEta = cms.double(2.4)
19  ),
20 
21  PythiaParameters = cms.PSet(parameterSets = cms.vstring())
22 )