1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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())
)
|