Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:37

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