-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 77787 b: "refs/heads/CMSSW_7_1_X" c: b69f371 h: "refs/heads/CMSSW_7_1_X" i: 77785: 907e52e 77783: a1e4f93 v: v3
- Loading branch information
Julia Yarba
committed
Nov 12, 2009
1 parent
6e02547
commit bddfd60
Showing
2 changed files
with
51 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
--- | ||
refs/heads/gh-pages: 09c786f70121f131b3715aaf3464996502bbeb7e | ||
"refs/heads/CMSSW_7_1_X": 9de397adc65bd3ac11abcf647415f45a8669448c | ||
"refs/heads/CMSSW_7_1_X": b69f3716c6673c1fa6cdf7706eb5ca26ef93977f |
50 changes: 50 additions & 0 deletions
50
trunk/Configuration/Generator/python/Pythia_H0_pyupda_cfi.py
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,50 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from Configuration.Generator.PythiaUESettings_cfi import * | ||
|
||
generator = cms.EDFilter("Pythia6GeneratorFilter", | ||
pythiaHepMCVerbosity = cms.untracked.bool(True), | ||
maxEventsToPrint = cms.untracked.int32(10), | ||
# Print event | ||
pythiaPylistVerbosity = cms.untracked.int32(3), | ||
# Print decay tables | ||
# pythiaPylistVerbosity = cms.untracked.int32(12), | ||
filterEfficiency = cms.untracked.double(1.0), | ||
comEnergy = cms.double(10000.0), | ||
# crossSection = cms.untracked.double(55000000000.), | ||
UseExternalGenerators = cms.untracked.bool(False), | ||
# | ||
PythiaParameters = cms.PSet( | ||
pythiaUESettingsBlock, | ||
pythiaMyParameters = cms.vstring( | ||
# This is needed if you are introducing long-lived exotic particles. | ||
'MSTJ(22)=1 ! Decay ALL unstable particles', | ||
|
||
'MSEL=0', | ||
# Request gg -> H0 production | ||
'MSUB(152)=1', | ||
'MWID(35)=2 ! Let me set H0 properties' | ||
), | ||
# | ||
PYUPDAParameters = cms.vstring( | ||
# Read my parameters | ||
"PYUPDAFILE = 'Configuration/Generator/data/Pythia_H0_pyupda.in'" | ||
# Optionally call PYUPDA after PYINIT. This doesn't seem to be necessary. | ||
# "PYUPDApostPYINIT" | ||
# Write current parameters | ||
# "PYUPDAFILE = \'pyupda.out\'" | ||
# "PYUPDAWRITE" | ||
), | ||
# | ||
# This is a vector of ParameterSet names to be read, in this order | ||
parameterSets = cms.vstring('pythiaUESettings', | ||
'pythiaMyParameters', | ||
'PYUPDAParameters') | ||
) | ||
) | ||
|
||
# this needs to get in somehow... | ||
# | ||
# genParticles.abortOnUnknownPDGCode = cms.untracked.bool(False) | ||
|
||
|