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 
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 *                                  # Import CTEQ6L PDF as shower pdf
0006 from Configuration.Generator.HerwigppPDF_NNPDF30_NLO_cfi import herwigppPDFSettingsBlock as herwigppHardPDFSettingsBlock    # Import NNPDF30 NLO as PDF of the hard subprocess
0007 from Configuration.Generator.HerwigppEnergy_13TeV_cfi import *
0008 from Configuration.Generator.HerwigppLHEFile_cfi import *
0009 from Configuration.Generator.HerwigppMECorrections_cfi import *
0010 from Configuration.Generator.HerwigppMPI_SwitchOff_cfi import *
0011 from Configuration.Generator.HerwigppReshuffle_RestMostOffShell_cfi import *
0012 
0013 generator = cms.EDFilter("ThePEGHadronizerFilter",
0014     herwigDefaultsBlock,
0015     herwigppUESettingsBlock,
0016     herwigppPDFSettingsBlock,
0017     herwigppHardPDFSettingsBlock,           # Implementing renamed NNPDF30 config block
0018     herwigppEnergySettingsBlock,
0019     herwigppLHEFileSettingsBlock,
0020     herwigppMECorrectionsSettingsBlock,
0021     herwigppMPISettingsBlock,
0022     herwigppReshuffleSettingsBlock,
0023 
0024     configFiles = cms.vstring(),
0025     parameterSets = cms.vstring(
0026         'hwpp_cmsDefaults',
0027         'hwpp_ue_EE5C',
0028         'hwpp_cm_13TeV',
0029         'hwpp_pdf_CTEQ6L1',         # Shower PDF matching with the tune
0030         'hwpp_pdf_NNPDF30NLO_Hard',     # PDF of hard subprocess
0031         'hwpp_LHE_Powheg_DifferentPDFs',
0032         'hwpp_MECorr_Off',          # Switch off ME corrections while showering LHE files as recommended by Herwig++ authors
0033         'hwpp_mpi_switchOff',
0034                 'hwpp_reshuffle_RestMostOffShell',      # The most off-shell is put on shell by rescaling it and the recoiling system, the recoiling system is then put on-shell in its rest frame.
0035     ),
0036 
0037         crossSection = cms.untracked.double(-1),
0038         filterEfficiency = cms.untracked.double(1.0),
0039 )
0040 ProductionFilterSequence = cms.Sequence(generator)