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 
0003 # Modified from Configuration/Generator/python/TenMuE_0_200_pythia8_cfi.py
0004 generator = cms.EDFilter("Pythia8EGun",
0005     PGunParameters = cms.PSet(
0006         MaxE = cms.double(500.0),
0007         MinE = cms.double(15.0),
0008         ParticleID = cms.vint32(-15,-15,-15,-15,-15),
0009         AddAntiParticle = cms.bool(True),
0010         MaxEta = cms.double(3.1),
0011         MaxPhi = cms.double(3.14159265359),
0012         MinEta = cms.double(-3.1),
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('Ten tau w/ energy 15 to 500'),
0019     firstRun = cms.untracked.uint32(1),
0020     PythiaParameters = cms.PSet(parameterSets = cms.vstring())
0021 
0022 )
0023