Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # Modified from Configuration/Generator/python/SingleMuPt10_cfi.py
0004 generator = cms.EDFilter("Pythia8PtGun",
0005     PGunParameters = cms.PSet(
0006         MaxPt = cms.double(200.0),
0007         MinPt = cms.double(0.9),
0008         ParticleID = cms.vint32(-13,-13),
0009         AddAntiParticle = cms.bool(True),
0010         MaxEta = cms.double(4.0),
0011         MaxPhi = cms.double(3.14159265359),
0012         MinEta = cms.double(-4.0),
0013         MinPhi = cms.double(-3.14159265359) ## in radians
0014 
0015     ),
0016     Verbosity = cms.untracked.int32(0), ## set to 1 (or greater)  for printouts
0017 
0018     psethack = cms.string('Four mu pt 1 to 200'),
0019     firstRun = cms.untracked.uint32(1),
0020     PythiaParameters = cms.PSet(parameterSets = cms.vstring())
0021 )