-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New_samples (TTbarLepton_14 and QQH1252T_14) added without updating 'upgradeWorkflowComponents' file #33409
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New_samples (TTbarLepton_14 and QQH1252T_14) added without updating 'upgradeWorkflowComponents' file #33409
Changes from all commits
03f104b
8ee645c
7a251cc
ea59118
6ec27ec
e26410a
59487bb
eaa98c2
b38d60a
398fb5c
66a3760
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| import FWCore.ParameterSet.Config as cms | ||
| from Configuration.Generator.Pythia8CommonSettings_cfi import * | ||
| from Configuration.Generator.Pythia8CP5Settings_cfi import * | ||
| generator = cms.EDFilter("Pythia8GeneratorFilter", | ||
| pythiaPylistVerbosity = cms.untracked.int32(1), | ||
| # put here the efficiency of your filter (1. if no filter) | ||
| filterEfficiency = cms.untracked.double(1.0), | ||
| comEnergy = cms.double(14000.0), | ||
| pythiaHepMCVerbosity = cms.untracked.bool(False), | ||
| # put here the cross section of your process (in pb) | ||
| crossSection = cms.untracked.double(0.388), | ||
| maxEventsToPrint = cms.untracked.int32(0), | ||
| PythiaParameters = cms.PSet( | ||
| pythia8CommonSettingsBlock, | ||
| pythia8CP5SettingsBlock, | ||
| processParameters = cms.vstring( | ||
| #'HiggsSM:gg2H = on', | ||
| 'HiggsSM:ff2Hff(t:WW) = on', | ||
| 'HiggsSM:ff2Hff(t:ZZ) = on', | ||
| '25:m0 = 125', | ||
| '25:onMode = off', | ||
| '25:onIfAny = 15', | ||
| ), | ||
| parameterSets = cms.vstring('pythia8CommonSettings', | ||
| 'pythia8CP5Settings', | ||
| 'processParameters', | ||
| ) | ||
| ) | ||
| ) | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| import FWCore.ParameterSet.Config as cms | ||
| from Configuration.Generator.Pythia8CommonSettings_cfi import * | ||
| from Configuration.Generator.Pythia8CP5Settings_cfi import * | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So do I need to create another PR with the following changes with the replacement ---> from Configuration.Generator.MCTunes2017.PythiaCP5Settings_cfi import *
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Yes, please.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I made following changes and recreate PR: |
||
|
|
||
| generator = cms.EDFilter("Pythia8GeneratorFilter", | ||
| pythiaHepMCVerbosity = cms.untracked.bool(False), | ||
| maxEventsToPrint = cms.untracked.int32(0), | ||
| pythiaPylistVerbosity = cms.untracked.int32(0), | ||
| filterEfficiency = cms.untracked.double(1.0), | ||
| comEnergy = cms.double(14000.0), | ||
| PythiaParameters = cms.PSet( | ||
| pythia8CommonSettingsBlock, | ||
| pythia8CP5SettingsBlock, | ||
| processParameters = cms.vstring( | ||
| 'Top:gg2ttbar = on ', | ||
| 'Top:qqbar2ttbar = on ', | ||
| '6:m0 = 172.5 ', | ||
| '24:onMode = off', | ||
| '24:onIfAny = 11 12', | ||
| '24:onIfAny = 13 14', | ||
| '24:onIfAny = 15 16', | ||
| ), | ||
| parameterSets = cms.vstring('pythia8CommonSettings', | ||
| 'pythia8CP5Settings', | ||
| 'processParameters', | ||
| ) | ||
| ) | ||
| ) | ||
| ProductionFilterSequence = cms.Sequence(generator) | ||
Uh oh!
There was an error while loading. Please reload this page.