CMS 3D CMS Logo

SinglePiE50HCAL_pythia8_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 generator = cms.EDFilter("Pythia8EGun",
3  PGunParameters = cms.PSet(
4  ParticleID = cms.vint32(211),
5  AddAntiParticle = cms.bool(True),
6  MaxEta = cms.double(5.0),
7  MaxPhi = cms.double(3.14159265359),
8  MinEta = cms.double(-5.0),
9  MinE = cms.double(49.99),
10  MinPhi = cms.double(-3.14159265359),
11  MaxE = cms.double(50.01)
12  ),
13  Verbosity = cms.untracked.int32(0),
14  psethack = cms.string('single pi E 50 HCAL'),
15  firstRun = cms.untracked.uint32(1),
16  PythiaParameters = cms.PSet(parameterSets = cms.vstring())
17  )
18