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 GeneratorInterface.PhotosInterface.PhotosppPythia8TauSettings_cfi import *
0005 generator = cms.EDFilter("Pythia8HadronizerFilter",
0006 ExternalDecays = cms.PSet(
0007 Photospp = PhotosppPythia8TauSettings,
0008 parameterSets = cms.vstring('Photospp')
0009 ),
0010 maxEventsToPrint = cms.untracked.int32(1),
0011 pythiaPylistVerbosity = cms.untracked.int32(1),
0012 filterEfficiency = cms.untracked.double(1.0),
0013 pythiaHepMCVerbosity = cms.untracked.bool(False),
0014 comEnergy = cms.double(13000.),
0015 PythiaParameters = cms.PSet(
0016 pythia8CommonSettingsBlock,
0017 pythia8CUEP8M1SettingsBlock,
0018 JetMatchingParameters = cms.vstring(
0019 'JetMatching:setMad = off',
0020 'JetMatching:scheme = 1',
0021 'JetMatching:merge = on',
0022 'JetMatching:jetAlgorithm = 2',
0023 'JetMatching:etaJetMax = 5.',
0024 'JetMatching:coneRadius = 1.',
0025 'JetMatching:slowJetPower = 1',
0026 'JetMatching:qCut = 20.',
0027 'JetMatching:nQmatch = 5',
0028 'JetMatching:nJetMax = 4',
0029 'JetMatching:doShowerKt = off',
0030 ),
0031 parameterSets = cms.vstring('pythia8CommonSettings',
0032 'pythia8CUEP8M1Settings',
0033 'JetMatchingParameters'
0034 )
0035 )
0036 )
0037 ProductionFilterSequence = cms.Sequence(generator)