CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ZtoTauHadronic_cfi.py
Go to the documentation of this file.
2 
3 """
4 ######## Generate Z->tautau decays ###########
5 Require both taus to decay hadronically
6 """
7 
8 source = cms.Source("PythiaSource",
9  PythiaParameters = cms.PSet(
10  #
11  # Default cards for minimum bias events (unfiltered)
12  # Name of the set is "pythiaMinBias"
13  #include "IOMC/GeneratorInterface/test/pythiaMinBias.cfg"
14  #
15  # User cards - name is "myParameters"
16  # Pythia's random generator initialization
17  zToTauTauHadronicOnly = cms.vstring('MSEL = 11 ',
18  'MDME( 174,1) = 0 !Z decay into d dbar',
19  'MDME( 175,1) = 0 !Z decay into u ubar',
20  'MDME( 176,1) = 0 !Z decay into s sbar',
21  'MDME( 177,1) = 0 !Z decay into c cbar',
22  'MDME( 178,1) = 0 !Z decay into b bbar',
23  'MDME( 179,1) = 0 !Z decay into t tbar',
24  'MDME( 182,1) = 0 !Z decay into e- e+',
25  'MDME( 183,1) = 0 !Z decay into nu_e nu_ebar',
26  'MDME( 184,1) = 0 !Z decay into mu- mu+',
27  'MDME( 185,1) = 0 !Z decay into nu_mu nu_mubar',
28  'MDME( 186,1) = 1 !Z decay into tau- tau+',
29  'MDME( 187,1) = 0 !Z decay into nu_tau nu_taubar',
30  'MDME( 89, 1) = 0 !no tau decay into electron',
31  'MDME( 90, 1) = 0 !no tau decay into muon',
32  'CKIN( 1) = 40. !(D=2. GeV)',
33  'CKIN( 2) = -1. !(D=-1. GeV)'),
34  parameterSets = cms.vstring('zToTauTauHadronicOnly')
35  )
36 )