test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
QQH120Inv_cfi.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 # Z decays
4 
5 # Higgs decays
6 
7 import FWCore.ParameterSet.Config as cms
8 
10 generator = cms.EDFilter("Pythia6GeneratorFilter",
11  pythiaPylistVerbosity = cms.untracked.int32(1),
12  # put here the efficiency of your filter (1. if no filter)
13  filterEfficiency = cms.untracked.double(1.0),
14  pythiaHepMCVerbosity = cms.untracked.bool(False),
15  # put here the cross section of your process (in pb)
16  crossSection = cms.untracked.double(4.3),
17  comEnergy = cms.double(10000.0),
18  maxEventsToPrint = cms.untracked.int32(3),
19  PythiaParameters = cms.PSet(
20  pythiaUESettingsBlock,
21  processParameters = cms.vstring('PMAS(25,1)=120.0 !mass of Higgs',
22  'MSEL=0 ! user selection for process',
23  'MSUB(123)=1 !ZZ fusion to H',
24  'MSUB(124)=1 !WW fusion to H',
25  'MDME(174,1)=0 !Z decay into d dbar',
26  'MDME(175,1)=0 !Z decay into u ubar',
27  'MDME(176,1)=0 !Z decay into s sbar',
28  'MDME(177,1)=0 !Z decay into c cbar',
29  'MDME(178,1)=0 !Z decay into b bbar',
30  'MDME(179,1)=0 !Z decay into t tbar',
31  'MDME(182,1)=0 !Z decay into e- e+',
32  'MDME(183,1)=1 !Z decay into nu_e nu_ebar',
33  'MDME(184,1)=0 !Z decay into mu- mu+',
34  'MDME(185,1)=0 !Z decay into nu_mu nu_mubar',
35  'MDME(186,1)=0 !Z decay into tau- tau+',
36  'MDME(187,1)=0 !Z decay into nu_tau nu_taubar',
37  'MDME(210,1)=0 !Higgs decay into dd',
38  'MDME(211,1)=0 !Higgs decay into uu',
39  'MDME(212,1)=0 !Higgs decay into ss',
40  'MDME(213,1)=0 !Higgs decay into cc',
41  'MDME(214,1)=0 !Higgs decay into bb',
42  'MDME(215,1)=0 !Higgs decay into tt',
43  'MDME(216,1)=0 !Higgs decay into',
44  'MDME(217,1)=0 !Higgs decay into Higgs decay',
45  'MDME(218,1)=0 !Higgs decay into e nu e',
46  'MDME(219,1)=0 !Higgs decay into mu nu mu',
47  'MDME(220,1)=0 !Higgs decay into tau nu tau',
48  'MDME(221,1)=0 !Higgs decay into Higgs decay',
49  'MDME(222,1)=0 !Higgs decay into g g',
50  'MDME(223,1)=0 !Higgs decay into gam gam',
51  'MDME(224,1)=0 !Higgs decay into gam Z',
52  'MDME(225,1)=1 !Higgs decay into Z Z',
53  'MDME(226,1)=0 !Higgs decay into W W'),
54  # This is a vector of ParameterSet names to be read, in this order
55  parameterSets = cms.vstring('pythiaUESettings',
56  'processParameters')
57  )
58 )