CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/FastSimulation/Configuration/python/HZZllll_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 source = cms.Source("EmptySource")
00004 
00005 generator = cms.EDFilter("Pythia6GeneratorFilter",
00006     comEnergy = cms.double(14000.),
00007     PythiaParameters = cms.PSet(
00008         #
00009         # Default cards for minimum bias events (unfiltered)
00010         # Name of the set is "pythiaMinBias"
00011         #include "IOMC/GeneratorInterface/test/pythiaMinBias.cfg"
00012         #
00013         # User cards - name is "myParameters"
00014         # Pythia's random generator initialization 
00015         myParameters = cms.vstring('MSEL=0 ! Users defined processes', 
00016             'MSUB(102)=1 ! Define the process : gg -> H', 
00017             'PMAS(23,1)=91.188 ! Z mass', 
00018             'PMAS(24,1)=80.450 ! W mass', 
00019             'PMAS(25,1)=180.00 ! H mass', 
00020             'MDME(210,1)=0 ! Switch off Higgs decay channels', 
00021             'MDME(211,1)=0', 
00022             'MDME(212,1)=0', 
00023             'MDME(213,1)=0', 
00024             'MDME(214,1)=0', 
00025             'MDME(215,1)=0', 
00026             'MDME(216,1)=0', 
00027             'MDME(217,1)=0', 
00028             'MDME(218,1)=0', 
00029             'MDME(219,1)=0', 
00030             'MDME(220,1)=0', 
00031             'MDME(221,1)=0', 
00032             'MDME(222,1)=0', 
00033             'MDME(223,1)=0', 
00034             'MDME(224,1)=0', 
00035             'MDME(225,1)=1 ! H -> ZZ switched on', 
00036             'MDME(226,1)=0', 
00037             'MDME(174,1)=0 ! Switch off Z decay channels', 
00038             'MDME(175,1)=0', 
00039             'MDME(176,1)=0', 
00040             'MDME(177,1)=0', 
00041             'MDME(178,1)=0', 
00042             'MDME(179,1)=0', 
00043             'MDME(180,1)=0', 
00044             'MDME(181,1)=0', 
00045             'MDME(182,1)=1 ! Z -> e+e- switched on', 
00046             'MDME(183,1)=0', 
00047             'MDME(184,1)=1 ! Z -> mu+mu- switched on', 
00048             'MDME(185,1)=0', 
00049             'MDME(186,1)=0', 
00050             'MDME(187,1)=0', 
00051             'MSTJ(22)=2   ! Do not decay unstable particles', 
00052             'PARJ(71)=10. ! with c*tau > cTauMin (in mm) in PYTHIA'),
00053         # This is a vector of ParameterSet names to be read, in this order
00054         # The first two are in the include files below
00055         # The last one are simply my additional parameters
00056         parameterSets = cms.vstring('myParameters')
00057     )
00058 )
00059 
00060 ProductionFilterSequence = cms.Sequence(generator)