Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 from Configuration.Generator.Pythia8CommonSettings_cfi import *
0003 from Configuration.Generator.Pythia8CUEP8M1Settings_cfi import *
0004 from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import *
0005 
0006 generator = cms.EDFilter("Pythia8HadronizerFilter",
0007                          maxEventsToPrint = cms.untracked.int32(1),
0008                          pythiaPylistVerbosity = cms.untracked.int32(1),
0009                          filterEfficiency = cms.untracked.double(1.0),
0010                          pythiaHepMCVerbosity = cms.untracked.bool(False),
0011                          comEnergy = cms.double(13000.),
0012                          ExternalDecays = cms.PSet(
0013                Tauola = cms.untracked.PSet(
0014                  UseTauolaPolarization = cms.bool(True),
0015                     InputCards = cms.PSet(
0016                         mdtau = cms.int32(0),
0017                         pjak2 = cms.int32(4),
0018                         pjak1 = cms.int32(4)
0019                    )
0020                 ),
0021                parameterSets = cms.vstring('Tauola')
0022              ),
0023                          PythiaParameters = cms.PSet(
0024              pythia8CommonSettingsBlock,
0025              pythia8CUEP8M1SettingsBlock,
0026              pythia8PowhegEmissionVetoSettingsBlock,
0027              processParameters = cms.vstring(
0028                 'POWHEG:nFinal = 3', ## Number of final state particles
0029                                      ## (BEFORE THE DECAYS) in the LHE
0030                                      ## other than emitted extra parton
0031                 '25:m0 = 125.0',
0032                 '25:onMode = off',
0033                 '25:onIfAny = 15',
0034               ),
0035              parameterSets = cms.vstring('pythia8CommonSettings',
0036                                          'pythia8CUEP8M1Settings',
0037                                          'pythia8PowhegEmissionVetoSettings',
0038                                          'processParameters'
0039                                          )
0040              )
0041                             )
0042 ProductionFilterSequence = cms.Sequence(generator)