Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 generator = cms.EDFilter("Pythia8PtGun",
0004                          PGunParameters = cms.PSet(
0005         MaxPt = cms.double(100.0),
0006         MinPt = cms.double(2.0),
0007         ParticleID = cms.vint32(-13),
0008         AddAntiParticle = cms.bool(True),
0009         MaxEta = cms.double(2.85),
0010         MaxPhi = cms.double(3.14159265359),
0011         MinEta = cms.double(-2.85),
0012         MinPhi = cms.double(-3.14159265359) ## in radians
0013         ),
0014                          Verbosity = cms.untracked.int32(0), ## set to 1 (or greater)  for printouts
0015                          psethack = cms.string('single mu pt 2 to 100'),
0016                          firstRun = cms.untracked.uint32(1),
0017                          PythiaParameters = cms.PSet(parameterSets = cms.vstring())
0018                          )