Skip to content

Commit

Permalink
Merge pull request #8 from vciulli/master
Browse files Browse the repository at this point in the history
Pythia8 fragment for minbias with tuen A2MB-MSTW2008LO
  • Loading branch information
vciulli committed Sep 1, 2013
2 parents ff301bd + b525809 commit 4b43f83
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions python/ThirteenTeV/MinBias_13TeV_pythia8_cfi.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import FWCore.ParameterSet.Config as cms

source = cms.Source("EmptySource")

generator = cms.EDFilter("Pythia8GeneratorFilter",
# crossSection = cms.untracked.double(xxxx), # to be determined with a test run
maxEventsToPrint = cms.untracked.int32(0),
pythiaPylistVerbosity = cms.untracked.int32(1),
filterEfficiency = cms.untracked.double(1.0),
pythiaHepMCVerbosity = cms.untracked.bool(False),
comEnergy = cms.double(13000.0),
PythiaParameters = cms.PSet(
processParameters = cms.vstring(
'Main:timesAllowErrors = 10000',
'ParticleDecays:limitTau0 = on',
'ParticleDecays:tauMax = 10',
'SoftQCD:minBias = on',
'SoftQCD:singleDiffractive = on',
'SoftQCD:doubleDiffractive = on',
'Tune:pp 8',
'Tune:ee 3'),
parameterSets = cms.vstring('processParameters')
)
)

ProductionFilterSequence = cms.Sequence(generator)

0 comments on commit 4b43f83

Please sign in to comment.