CMS 3D CMS Logo

DoubleGammaPt10Extended_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(10.01),
6  MinPt = cms.double(9.99),
7  ParticleID = cms.vint32(22),
8  AddAntiParticle = cms.bool(True),
9  MaxEta = cms.double(4.0),
10  MaxPhi = cms.double(3.14159265359),
11  MinEta = cms.double(-4.0),
12  MinPhi = cms.double(-3.14159265359) ## in radians
13 
14  ),
15  Verbosity = cms.untracked.int32(0), ## set to 1 (or greater) for printouts
16 
17  psethack = cms.string('single gamma pt 10'),
18  firstRun = cms.untracked.uint32(1),
19  PythiaParameters = cms.PSet(parameterSets = cms.vstring())
20 )