File indexing completed on 2023-10-25 09:38:24
0001 import FWCore.ParameterSet.Config as cms
0002
0003 generator = cms.EDProducer("CloseByParticleGunProducer",
0004 PGunParameters = cms.PSet(PartID = cms.vint32(22),
0005 ControlledByEta = cms.bool(False),
0006 EnMin = cms.double(25.),
0007 EnMax = cms.double(200.),
0008 MaxEnSpread = cms.bool(False),
0009 RMin = cms.double(49.99),
0010 RMax = cms.double(50.01),
0011 ZMin = cms.double(362.519),
0012 ZMax = cms.double(362.521),
0013 Delta = cms.double(10),
0014 Pointing = cms.bool(True),
0015 Overlapping = cms.bool(False),
0016 RandomShoot = cms.bool(False),
0017 NParticles = cms.int32(1),
0018 MaxEta = cms.double(2.7),
0019 MinEta = cms.double(1.7),
0020 MaxPhi = cms.double(3.14159265359),
0021 MinPhi = cms.double(-3.14159265359),
0022
0023 ),
0024 Verbosity = cms.untracked.int32(0),
0025
0026 psethack = cms.string('random particles in phi and r windows'),
0027 AddAntiParticle = cms.bool(False),
0028 firstRun = cms.untracked.uint32(1)
0029 )