CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/GeneratorInterface/Pythia6Interface/python/Ztautau_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from Configuration.Generator.PythiaUESettings_cfi import *
00004 ### from GeneratorInterface.Pythia6Interface.TauolaSettings_cff import *
00005 from GeneratorInterface.ExternalDecays.TauolaSettings_cff import *
00006 Generator = cms.EDFilter("Pythia6GeneratorFilter",
00007     maxEventsToPrint = cms.untracked.int32(5),
00008     pythiaPylistVerbosity = cms.untracked.int32(1),
00009     filterEfficiency = cms.untracked.double(1.0),
00010     pythiaHepMCVerbosity = cms.untracked.bool(False),
00011     comEnergy = cms.double(10000.0),
00012     ExternalDecays = cms.PSet(
00013         Tauola = cms.untracked.PSet(
00014             TauolaPolar,
00015             TauolaDefaultInputCards
00016         ),
00017         parameterSets = cms.vstring('Tauola')
00018     ),
00019     PythiaParameters = cms.PSet(
00020         pythiaUESettingsBlock,
00021         ZtautauParameters = cms.vstring('MSEL         = 11 ', 
00022             'MDME( 174,1) = 0    !Z decay into d dbar', 
00023             'MDME( 175,1) = 0    !Z decay into u ubar', 
00024             'MDME( 176,1) = 0    !Z decay into s sbar', 
00025             'MDME( 177,1) = 0    !Z decay into c cbar', 
00026             'MDME( 178,1) = 0    !Z decay into b bbar', 
00027             'MDME( 179,1) = 0    !Z decay into t tbar', 
00028             'MDME( 182,1) = 0    !Z decay into e- e+', 
00029             'MDME( 183,1) = 0    !Z decay into nu_e nu_ebar', 
00030             'MDME( 184,1) = 0    !Z decay into mu- mu+', 
00031             'MDME( 185,1) = 0    !Z decay into nu_mu nu_mubar', 
00032             'MDME( 186,1) = 1    !Z decay into tau- tau+', 
00033             'MDME( 187,1) = 0    !Z decay into nu_tau nu_taubar', 
00034             'CKIN( 1)     = 40.  !(D=2. GeV)', 
00035             'CKIN( 2)     = -1.  !(D=-1. GeV)'),
00036         parameterSets = cms.vstring('pythiaUESettings', 
00037             'ZtautauParameters')
00038     )
00039 )
00040 
00041 
00042