/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Configuration/Generator/python/SingleTaupt_50_pythia8_cfi.py
29 строк
1 KB
inugent
Adding patch for failed relval sequences with pythia8
11 дек 2014, 20:54
11 дек 2014, 20:54
ccd803c
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from Configuration.Generator.Pythia8CommonSettings_cfi import * from Configuration.Generator.Pythia8CUEP8M1Settings_cfi import * generator = cms.EDFilter("Pythia8PtGun", pythia8CommonSettingsBlock, pythia8CUEP8M1SettingsBlock, PGunParameters = cms.PSet( ParticleID = cms.vint32(-15), AddAntiParticle = cms.bool(False), MinPhi = cms.double(-3.14159265359), MaxPhi = cms.double(3.14159265359), MinPt = cms.double(50.0), MaxPt = cms.double(50.0001), MinEta = cms.double(-2.4), MaxEta = cms.double(2.4) ), pythiaTauJets = cms.vstring( 'ParticleDecays:sophisticatedTau = 2', 'ParticleDecays:tauPolarization = 0', "15:onMode = off", "15:onIfAny = 211 -211 321 -321" # turn on if there is a charged k or pi in the decay products ), parameterSets = cms.vstring( 'pythia8CommonSettings', #'pythia8CUEP8M1Settings', # not applicable for taus 'pythiaTauJets' ), PythiaParameters = cms.PSet(parameterSets = cms.vstring()) )