Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from Configuration.Generator.PythiaUESettings_cfi import *
0004 from GeneratorInterface.ExternalDecays.TauolaSettings_cff import *
0005 
0006 generator = cms.EDFilter("Pythia6GeneratorFilter",
0007     pythiaHepMCVerbosity = cms.untracked.bool(False),
0008     maxEventsToPrint = cms.untracked.int32(0),
0009     pythiaPylistVerbosity = cms.untracked.int32(0),
0010     filterEfficiency = cms.untracked.double(1.0),
0011     comEnergy = cms.double(10000.0),
0012     ExternalDecays = cms.PSet(
0013         Tauola = cms.untracked.PSet(
0014             TauolaPolar,
0015             InputCards = cms.PSet(
0016            pjak1 = cms.int32(0),
0017            pjak2 = cms.int32(0),
0018            mdtau = cms.int32(230)
0019         )
0020         ),
0021         parameterSets = cms.vstring('Tauola')
0022     ),
0023     PythiaParameters = cms.PSet(
0024         pythiaUESettingsBlock,
0025         processParameters = cms.vstring('MSEL         = 11 ', 
0026             'MDME( 174,1) = 0    !Z decay into d dbar', 
0027             'MDME( 175,1) = 0    !Z decay into u ubar', 
0028             'MDME( 176,1) = 0    !Z decay into s sbar', 
0029             'MDME( 177,1) = 0    !Z decay into c cbar', 
0030             'MDME( 178,1) = 0    !Z decay into b bbar', 
0031             'MDME( 179,1) = 0    !Z decay into t tbar', 
0032             'MDME( 182,1) = 0    !Z decay into e- e+', 
0033             'MDME( 183,1) = 0    !Z decay into nu_e nu_ebar', 
0034             'MDME( 184,1) = 0    !Z decay into mu- mu+', 
0035             'MDME( 185,1) = 0    !Z decay into nu_mu nu_mubar', 
0036             'MDME( 186,1) = 1    !Z decay into tau- tau+', 
0037             'MDME( 187,1) = 0    !Z decay into nu_tau nu_taubar', 
0038             'CKIN( 1)     = 40.  !(D=2. GeV)', 
0039             'CKIN( 2)     = -1.  !(D=-1. GeV)'), 
0040         # This is a vector of ParameterSet names to be read, in this order
0041         parameterSets = cms.vstring('pythiaUESettings', 
0042             'processParameters')
0043     )
0044 )