-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZH_ZTobb_HToInv_M_125_TuneZ2star_8TeV_pythia6_cff.py
46 lines (43 loc) · 2.1 KB
/
ZH_ZTobb_HToInv_M_125_TuneZ2star_8TeV_pythia6_cff.py
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import FWCore.ParameterSet.Config as cms
from Configuration.Generator.PythiaUEZ2starSettings_cfi import *
source = cms.Source("EmptySource")
generator = cms.EDFilter('Pythia6GeneratorFilter',
comEnergy = cms.double(8000.0),
crossSection = cms.untracked.double(1.0),
filterEfficiency = cms.untracked.double(1.0),
maxEventsToPrint = cms.untracked.int32(0),
pythiaHepMCVerbosity = cms.untracked.bool(False),
pythiaPylistVerbosity = cms.untracked.int32(0),
PythiaParameters = cms.PSet(
pythiaUESettingsBlock,
processParameters = cms.vstring(
'PMAS(25,1)=125.0 !Higgs mass',
'MSEL=0 !(D=1) to select between full user control (0, then use MSUB) and some preprogrammed alternative',
'MSUB(102)=0 !ggH',
'MSUB(123)=0 !ZZ fusion to H',
'MSUB(124)=0 !WW fusion to H',
'MSUB(24)=1 !ZH Higgsstrahlung',
'MDME(174,1)=0 !Z decay into d dbar',
'MDME(175,1)=0 !Z decay into u ubar',
'MDME(176,1)=0 !Z decay into s sbar',
'MDME(177,1)=0 !Z decay into c cbar',
'MDME(178,1)=1 !Z decay into b bbar',
'MDME(179,1)=0 !Z decay into t tbar',
'MDME(180,1)=-1 !Z decay into b* b*bar',
'MDME(181,1)=-1 !Z decay into t* t*bar',
'MDME(182,1)=0 !Z decay into e- e+',
'MDME(183,1)=0 !Z decay into nu_e nu_ebar',
'MDME(184,1)=0 !Z decay into mu- mu+',
'MDME(185,1)=0 !Z decay into nu_mu nu_mubar',
'MDME(186,1)=0 !Z decay into tau- tau+',
'MDME(187,1)=0 !Z decay into nu_tau nu_taubar',
'MDME(188,1)=-1 !Z decay into tau* tau*bar',
'MDME(189,1)=-1 !Z decay into nu_tau* nu_tau*bar',
'MDCY(25,1)=0 !All Higgs decays switched off',
),
parameterSets = cms.vstring(
'pythiaUESettings',
'processParameters',
)
)
)