-
Notifications
You must be signed in to change notification settings - Fork 786
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
157 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
externalLHEProducer = cms.EDProducer('ExternalLHEProducer', | ||
args = cms.vstring('/cvmfs/cms.cern.ch/phys_generator/gridpacks/PdmV/Run3Summer22/WtoLNu-4Jets_madgraphMLM-pythia8_slc7_amd64_gcc10_CMSSW_12_4_8_tarball.tar.xz'), | ||
nEvents = cms.untracked.uint32(5000), | ||
numberOfParameters = cms.uint32(1), | ||
outputFile = cms.string('cmsgrid_final.lhe'), | ||
scriptName = cms.FileInPath('GeneratorInterface/LHEInterface/data/run_generic_tarball_cvmfs.sh'), | ||
generateConcurrently = cms.untracked.bool(False), | ||
) | ||
|
||
from Configuration.Generator.Pythia8CommonSettings_cfi import * | ||
from Configuration.Generator.MCTunesRun3ECM13p6TeV.PythiaCP5Settings_cfi import * | ||
from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * | ||
|
||
generator = cms.EDFilter("Pythia8ConcurrentHadronizerFilter", | ||
PythiaParameters = cms.PSet( | ||
pythia8CommonSettingsBlock, | ||
pythia8CP5SettingsBlock, | ||
pythia8PSweightsSettingsBlock, | ||
processParameters = cms.vstring( | ||
'JetMatching:setMad = off', | ||
'JetMatching:scheme = 1', | ||
'JetMatching:merge = on', | ||
'JetMatching:jetAlgorithm = 2', | ||
'JetMatching:etaJetMax = 5.', | ||
'JetMatching:coneRadius = 1.', | ||
'JetMatching:slowJetPower = 1', | ||
'JetMatching:doShowerKt = off', | ||
'JetMatching:qCut = 19.', | ||
'JetMatching:nQmatch = 5', | ||
'JetMatching:nJetMax = 4', | ||
'TimeShower:mMaxGamma = 4.0' | ||
), | ||
parameterSets = cms.vstring( | ||
'pythia8CommonSettings', | ||
'pythia8CP5Settings', | ||
'processParameters', | ||
'pythia8PSweightsSettings' | ||
) | ||
), | ||
comEnergy = cms.double(13600), | ||
maxEventsToPrint = cms.untracked.int32(1), | ||
pythiaHepMCVerbosity = cms.untracked.bool(False), | ||
pythiaPylistVerbosity = cms.untracked.int32(1), | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
|
||
externalLHEProducer = cms.EDProducer("ExternalLHEProducer", | ||
args = cms.vstring('/cvmfs/cms.cern.ch/phys_generator/gridpacks/UL/13TeV/powheg/V2/VBF_H_slc7_amd64_gcc820_CMSSW_10_6_20_VBF_H_M110/v1/VBF_H_slc7_amd64_gcc820_CMSSW_10_6_20_VBF_H_M110.tgz'), | ||
nEvents = cms.untracked.uint32(5000), | ||
numberOfParameters = cms.uint32(1), | ||
outputFile = cms.string('cmsgrid_final.lhe'), | ||
generateConcurrently = cms.untracked.bool(True), | ||
scriptName = cms.FileInPath('GeneratorInterface/LHEInterface/data/run_generic_tarball_cvmfs.sh') | ||
) | ||
|
||
from Configuration.Generator.Pythia8CommonSettings_cfi import * | ||
from Configuration.Generator.MCTunes2017.PythiaCP5Settings_cfi import * | ||
from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * | ||
from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import * | ||
|
||
generator = cms.EDFilter("Pythia8ConcurrentHadronizerFilter", | ||
comEnergy = cms.double(13000.0), | ||
filterEfficiency = cms.untracked.double(1), | ||
maxEventsToPrint = cms.untracked.int32(1), | ||
pythiaHepMCVerbosity = cms.untracked.bool(False), | ||
pythiaPylistVerbosity = cms.untracked.int32(1), | ||
PythiaParameters = cms.PSet( | ||
pythia8CommonSettingsBlock, | ||
pythia8CP5SettingsBlock, | ||
pythia8PSweightsSettingsBlock, | ||
pythia8PowhegEmissionVetoSettingsBlock, | ||
processParameters = cms.vstring('POWHEG:nFinal = 3', | ||
'SpaceShower:dipoleRecoil = on', | ||
'TauDecays:mode = 2', | ||
'TauDecays:tauPolarization = 0', | ||
'TauDecays:tauMother = 25', | ||
'25:m0 = 110.0', | ||
'25:mWidth = 0.0175', | ||
'25:addChannel 1 0.1 100 13 -15', | ||
'25:addChannel 1 0.1 100 15 -13', | ||
'25:onMode = off', | ||
'25:onIfMatch 13 15'), | ||
|
||
parameterSets = cms.vstring( | ||
'pythia8PowhegEmissionVetoSettings', | ||
'pythia8CommonSettings', | ||
'pythia8CP5Settings', | ||
'pythia8PSweightsSettings', | ||
'processParameters', | ||
) | ||
) | ||
) | ||
|
||
ProductionFilterSequence = cms.Sequence(generator) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
externalLHEProducer = cms.EDProducer("ExternalLHEProducer", | ||
args = cms.vstring('/cvmfs/cms.cern.ch/phys_generator/gridpacks/13p6TeV/madgraph/V5_2.9.13/DYJetsToMuMu/DYto2L-4Jets_MLL-50_madgraphMLM-pythia8_slc7_amd64_gcc10_CMSSW_12_4_8_tarball.tar.xz'), | ||
nEvents = cms.untracked.uint32(5000), | ||
numberOfParameters = cms.uint32(1), | ||
generateConcurrently = cms.untracked.bool(False), | ||
outputFile = cms.string('cmsgrid_final.lhe'), | ||
scriptName = cms.FileInPath('GeneratorInterface/LHEInterface/data/run_generic_tarball_cvmfs.sh') | ||
) | ||
|
||
|
||
from Configuration.Generator.Pythia8CommonSettings_cfi import * | ||
from Configuration.Generator.MCTunesRun3ECM13p6TeV.PythiaCP5Settings_cfi import * | ||
from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * | ||
|
||
generator = cms.EDFilter("Pythia8ConcurrentHadronizerFilter", | ||
maxEventsToPrint = cms.untracked.int32(1), | ||
pythiaPylistVerbosity = cms.untracked.int32(1), | ||
filterEfficiency = cms.untracked.double(1.0), | ||
pythiaHepMCVerbosity = cms.untracked.bool(False), | ||
comEnergy = cms.double(13600.), | ||
PythiaParameters = cms.PSet( | ||
pythia8CommonSettingsBlock, | ||
pythia8CP5SettingsBlock, | ||
pythia8PSweightsSettingsBlock, | ||
processParameters = cms.vstring( | ||
'JetMatching:setMad = off', | ||
'JetMatching:scheme = 1', | ||
'JetMatching:merge = on', | ||
'JetMatching:jetAlgorithm = 2', | ||
'JetMatching:etaJetMax = 5.', | ||
'JetMatching:coneRadius = 1.', | ||
'JetMatching:slowJetPower = 1', | ||
'JetMatching:qCut = 19.', #this is the actual merging scale | ||
'JetMatching:nQmatch = 5', #4 corresponds to 4-flavour scheme (no matching of b-quarks), 5 for 5-flavour scheme | ||
'JetMatching:nJetMax = 4', #number of partons in born matrix element for highest multiplicity | ||
'JetMatching:doShowerKt = off', #off for MLM matching, turn on for shower-kT matching | ||
'TimeShower:mMaxGamma = 4.0' | ||
), | ||
parameterSets = cms.vstring('pythia8CommonSettings', | ||
'pythia8CP5Settings', | ||
'pythia8PSweightsSettings', | ||
'processParameters', | ||
) | ||
) | ||
) |