Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:49:01

0001 import FWCore.ParameterSet.Config as cms
0002 generator = cms.EDFilter("Pythia8EGun",
0003                          PGunParameters = cms.PSet(
0004         ParticleID = cms.vint32(11),
0005         AddAntiParticle = cms.bool(True),
0006         MinPhi = cms.double(-3.14159265359), ## in radians
0007         MaxPhi = cms.double(3.14159265359),
0008         MinEta = cms.double(-5.0),
0009         MaxEta = cms.double(5.0),
0010         MinE = cms.double(119.99),
0011         MaxE = cms.double(120.01)
0012         ),
0013                          Verbosity = cms.untracked.int32(0), ## set to 1 (or greater)  for printouts
0014                          psethack = cms.string('single electron E 120 EHCAL'),
0015                          firstRun = cms.untracked.uint32(1),
0016                          PythiaParameters = cms.PSet(parameterSets = cms.vstring())
0017                          )