Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:49:00

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from Configuration.Generator.HerwigppDefaults_cfi import *
0004 from Configuration.Generator.HerwigppUE_EE_5C_cfi import *
0005 from Configuration.Generator.HerwigppPDF_CTEQ6_LO_cfi import *
0006 from Configuration.Generator.HerwigppEnergy_13TeV_cfi import *
0007 
0008 generator = cms.EDFilter("ThePEGGeneratorFilter",
0009         herwigDefaultsBlock,
0010     herwigppUESettingsBlock,
0011     herwigppPDFSettingsBlock,
0012     herwigppEnergySettingsBlock,
0013 
0014         configFiles = cms.vstring(),
0015         parameterSets = cms.vstring(
0016                 'hwpp_cmsDefaults',
0017                 'hwpp_cm_13TeV',
0018                 'hwpp_ue_EE5C',
0019         'hwpp_pdf_CTEQ6L1',
0020                 'processParameters',
0021         ),
0022 
0023         processParameters = cms.vstring(
0024 
0025                 'insert /Herwig/MatrixElements/SimpleQCD:MatrixElements[0] /Herwig/MatrixElements/MEQCD2to2',
0026 
0027                 'set /Herwig/Cuts/JetKtCut:MinKT 30*GeV',
0028                 'set /Herwig/Cuts/QCDCuts:MHatMin 0.0*GeV',
0029                 'set /Herwig/UnderlyingEvent/MPIHandler:IdenticalToUE 0',
0030         ),
0031 
0032         crossSection = cms.untracked.double(-1.),
0033         filterEfficiency = cms.untracked.double(1.0),
0034 )
0035 
0036 ProductionFilterSequence = cms.Sequence(generator)