1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import FWCore.ParameterSet.Config as cms
pythia8CP2TuneUpSettingsBlock = cms.PSet(
pythia8CP2TuneUpSettings = cms.vstring(
'Tune:pp 14',
'Tune:ee 7',
'MultipartonInteractions:bProfile=2',
'MultipartonInteractions:ecmPow=0.1391',
'MultipartonInteractions:pT0Ref=2.34',
'MultipartonInteractions:coreRadius=0.414',
'MultipartonInteractions:coreFraction=0.5065',
'ColourReconnection:range=1.462',
'SigmaTotal:zeroAXB=off',
'SpaceShower:rapidityOrder=off',
'SpaceShower:alphaSvalue=0.13',
'TimeShower:alphaSvalue=0.13',
'SigmaTotal:mode = 0',
'SigmaTotal:sigmaEl = 21.89',
'SigmaTotal:sigmaTot = 100.309',
'PDF:pSet=LHAPDF6:NNPDF31_lo_as_0130',
)
)
|