CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HZZllll_cfi.py
Go to the documentation of this file.
2 
3 source = cms.Source("EmptySource")
4 
5 generator = cms.EDFilter("Pythia6GeneratorFilter",
6  comEnergy = cms.double(14000.),
7  PythiaParameters = cms.PSet(
8  #
9  # Default cards for minimum bias events (unfiltered)
10  # Name of the set is "pythiaMinBias"
11  #include "IOMC/GeneratorInterface/test/pythiaMinBias.cfg"
12  #
13  # User cards - name is "myParameters"
14  # Pythia's random generator initialization
15  myParameters = cms.vstring('MSEL=0 ! Users defined processes',
16  'MSUB(102)=1 ! Define the process : gg -> H',
17  'PMAS(23,1)=91.188 ! Z mass',
18  'PMAS(24,1)=80.450 ! W mass',
19  'PMAS(25,1)=180.00 ! H mass',
20  'MDME(210,1)=0 ! Switch off Higgs decay channels',
21  'MDME(211,1)=0',
22  'MDME(212,1)=0',
23  'MDME(213,1)=0',
24  'MDME(214,1)=0',
25  'MDME(215,1)=0',
26  'MDME(216,1)=0',
27  'MDME(217,1)=0',
28  'MDME(218,1)=0',
29  'MDME(219,1)=0',
30  'MDME(220,1)=0',
31  'MDME(221,1)=0',
32  'MDME(222,1)=0',
33  'MDME(223,1)=0',
34  'MDME(224,1)=0',
35  'MDME(225,1)=1 ! H -> ZZ switched on',
36  'MDME(226,1)=0',
37  'MDME(174,1)=0 ! Switch off Z decay channels',
38  'MDME(175,1)=0',
39  'MDME(176,1)=0',
40  'MDME(177,1)=0',
41  'MDME(178,1)=0',
42  'MDME(179,1)=0',
43  'MDME(180,1)=0',
44  'MDME(181,1)=0',
45  'MDME(182,1)=1 ! Z -> e+e- switched on',
46  'MDME(183,1)=0',
47  'MDME(184,1)=1 ! Z -> mu+mu- switched on',
48  'MDME(185,1)=0',
49  'MDME(186,1)=0',
50  'MDME(187,1)=0',
51  'MSTJ(22)=2 ! Do not decay unstable particles',
52  'PARJ(71)=10. ! with c*tau > cTauMin (in mm) in PYTHIA'),
53  # This is a vector of ParameterSet names to be read, in this order
54  # The first two are in the include files below
55  # The last one are simply my additional parameters
56  parameterSets = cms.vstring('myParameters')
57  )
58 )
59 
60 ProductionFilterSequence = cms.Sequence(generator)